webrtc/peerconnection/base/base.gyp
wu@webrtc.org 022239d6ba Update to chromium 162524.
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
2012-10-17 23:45:07 +00:00

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',
],
},
}],
],
},
],
}