Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1612)

Unified Diff: third_party/libjingle/libjingle.gyp

Issue 450463002: Update webrtc&libjingle 6774:6825. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/libjingle/README.chromium ('k') | third_party/libjingle/libjingle_common.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libjingle/libjingle.gyp
===================================================================
--- third_party/libjingle/libjingle.gyp (revision 287594)
+++ third_party/libjingle/libjingle.gyp (working copy)
@@ -22,7 +22,7 @@
'HAVE_SRTP',
'HAVE_WEBRTC_VIDEO',
'HAVE_WEBRTC_VOICE',
- 'LOGGING_INSIDE_LIBJINGLE',
+ 'LOGGING_INSIDE_WEBRTC',
'NO_MAIN_THREAD_WRAPPING',
'NO_SOUND_SYSTEM',
'SRTP_RELATIVE_PATH',
@@ -40,14 +40,13 @@
},
'include_dirs': [
'./overrides',
+ '../../third_party/webrtc/overrides',
'./<(libjingle_source)',
- '../../third_party/webrtc/overrides',
'../..',
'../../testing/gtest/include',
'../../third_party',
'../../third_party/libyuv/include',
'../../third_party/usrsctp',
- '../../third_party/webrtc',
],
'dependencies': [
'<(DEPTH)/base/base.gyp:base',
@@ -59,13 +58,12 @@
],
'direct_dependent_settings': {
'include_dirs': [
+ '../../third_party/webrtc/overrides',
'./overrides',
'./<(libjingle_source)',
- '../../third_party/webrtc/overrides',
'../..',
'../../testing/gtest/include',
'../../third_party',
- '../../third_party/webrtc',
],
'defines': [
'FEATURE_ENABLE_SSL',
@@ -98,13 +96,27 @@
['OS=="linux"', {
'defines': [
'LINUX',
+ 'WEBRTC_LINUX',
],
}],
['OS=="mac"', {
'defines': [
'OSX',
+ 'WEBRTC_MAC',
],
}],
+ ['OS=="ios"', {
+ 'defines': [
+ 'IOS',
+ 'WEBRTC_MAC',
+ 'WEBRTC_IOS',
+ ],
+ }],
+ ['OS=="win"', {
+ 'defines': [
+ 'WEBRTC_WIN',
+ ],
+ }],
['OS=="android"', {
'defines': [
'ANDROID',
@@ -113,6 +125,7 @@
['os_posix==1', {
'defines': [
'POSIX',
+ 'WEBRTC_POSIX',
],
}],
['os_bsd==1', {
@@ -202,21 +215,31 @@
['OS=="linux"', {
'defines': [
'LINUX',
+ 'WEBRTC_LINUX',
],
}],
['OS=="mac"', {
'defines': [
'OSX',
+ 'WEBRTC_MAC',
],
}],
+ ['OS=="win"', {
+ 'defines': [
+ 'WEBRTC_WIN',
+ ],
+ }],
['OS=="ios"', {
'defines': [
'IOS',
+ 'WEBRTC_MAC',
+ 'WEBRTC_IOS',
],
}],
['os_posix == 1', {
'defines': [
'POSIX',
+ 'WEBRTC_POSIX',
],
}],
['os_bsd==1', {
@@ -241,26 +264,13 @@
'target_name': 'libjingle',
'type': 'static_library',
'includes': [ 'libjingle_common.gypi' ],
- 'sources': [
- 'overrides/talk/base/basictypes.h',
- 'overrides/talk/base/constructormagic.h',
- 'overrides/talk/base/win32socketinit.cc',
-
- # Overrides logging.h/.cc because libjingle logging should be done to
- # the same place as the chromium logging.
- 'overrides/talk/base/logging.cc',
- 'overrides/talk/base/logging.h',
- ],
'sources!' : [
# Compiled as part of libjingle_p2p_constants.
'<(libjingle_source)/talk/p2p/base/constants.cc',
'<(libjingle_source)/talk/p2p/base/constants.h',
-
- # Replaced with logging.cc in the overrides.
- '<(libjingle_source)/talk/base/logging.h',
- '<(libjingle_source)/talk/base/logging.cc',
],
'dependencies': [
+ '<(DEPTH)/third_party/webrtc/base/base.gyp:webrtc_base',
'libjingle_p2p_constants',
'<@(libjingle_additional_deps)',
],
@@ -508,10 +518,6 @@
'conditions': [
['OS=="win"', {
'sources': [
- '<(libjingle_source)/talk/base/win32window.cc',
- '<(libjingle_source)/talk/base/win32window.h',
- '<(libjingle_source)/talk/base/win32windowpicker.cc',
- '<(libjingle_source)/talk/base/win32windowpicker.h',
'<(libjingle_source)/talk/media/devices/win32deviceinfo.cc',
'<(libjingle_source)/talk/media/devices/win32devicemanager.cc',
'<(libjingle_source)/talk/media/devices/win32devicemanager.h',
@@ -519,8 +525,6 @@
}],
['OS=="linux"', {
'sources': [
- '<(libjingle_source)/talk/base/linuxwindowpicker.cc',
- '<(libjingle_source)/talk/base/linuxwindowpicker.h',
'<(libjingle_source)/talk/media/devices/libudevsymboltable.cc',
'<(libjingle_source)/talk/media/devices/libudevsymboltable.h',
'<(libjingle_source)/talk/media/devices/linuxdeviceinfo.cc',
« no previous file with comments | « third_party/libjingle/README.chromium ('k') | third_party/libjingle/libjingle_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698