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

Unified Diff: trunk/src/third_party/libjingle/libjingle.gyp

Issue 14767016: Reland 198495 for Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 7 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
Index: trunk/src/third_party/libjingle/libjingle.gyp
===================================================================
--- trunk/src/third_party/libjingle/libjingle.gyp (revision 198674)
+++ trunk/src/third_party/libjingle/libjingle.gyp (working copy)
@@ -11,8 +11,13 @@
'libjingle_additional_deps%': [],
'libjingle_peerconnection_additional_deps%': [],
'libjingle_source%': "source",
- 'libpeer_target_type%': 'static_library',
- 'libpeer_allocator_shim%': 0,
+ 'conditions': [
+ ['OS=="win"', { # TODO(tommi): Enable for mac and linux.
+ 'libpeer_target_type%': 'loadable_module',
+ }, {
+ 'libpeer_target_type%': 'static_library',
+ }],
+ ],
},
'target_defaults': {
'defines': [
@@ -762,8 +767,7 @@
'<(libjingle_source)/talk/session/tunnel/tunnelsessionclient.h',
],
'conditions': [
- ['libpeer_allocator_shim==1 and '
- 'libpeer_target_type!="static_library" and OS!="mac"', {
+ ['libpeer_target_type!="static_library" and OS!="mac"', {
'sources': [
'overrides/allocator_shim/allocator_stub.cc',
'overrides/allocator_shim/allocator_stub.h',
@@ -868,8 +872,7 @@
'libjingle_webrtc',
],
'conditions': [
- ['libpeer_allocator_shim==1 and '
- 'libpeer_target_type!="static_library"', {
+ ['libpeer_target_type!="static_library"', {
'sources': [
'overrides/initialize_module.cc',
],
« no previous file with comments | « trunk/src/content/content_unittests.isolate ('k') | trunk/src/third_party/libjingle/overrides/init_webrtc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698