022239d6ba
BUG=915 Review URL: https://webrtc-codereview.appspot.com/891005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@2943 4adac7df-926f-26a2-2b94-8c16560cd09d
35 lines
870 B
Python
35 lines
870 B
Python
# Below are normally provided by Chromium's base.gyp and required for
|
|
# libjingle.gyp.
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'base',
|
|
'type': 'none',
|
|
'direct_dependent_settings': {
|
|
'include_dirs': [
|
|
'..',
|
|
],
|
|
},
|
|
'conditions': [
|
|
['OS == "linux"', {
|
|
'link_settings': {
|
|
'libraries': [
|
|
# We need rt for clock_gettime() used in libjingle.
|
|
'-lrt',
|
|
],
|
|
},
|
|
}],
|
|
['OS == "mac"', {
|
|
'link_settings': {
|
|
'libraries': [
|
|
'$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/CoreServices.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
|
|
],
|
|
},
|
|
}],
|
|
],
|
|
},
|
|
],
|
|
}
|