Index: webrtc/pc/pc.gyp |
diff --git a/webrtc/pc/pc.gyp b/webrtc/pc/pc.gyp |
index 40874b1a45d99bf853ead62410821b64853642c2..14038060de606fc211165ad9a3460350899e4fe3 100755 |
--- a/webrtc/pc/pc.gyp |
+++ b/webrtc/pc/pc.gyp |
@@ -72,5 +72,76 @@ |
'voicechannel.h', |
], |
}, # target rtc_pc |
- ], |
+ ], # targets |
+ 'conditions': [ |
+ ['include_tests==1', { |
+ 'targets' : [ |
+ { |
+ 'target_name': 'rtc_pc_unittests', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ '<(webrtc_root)/api/api.gyp:libjingle_peerconnection', |
+ '<(webrtc_root)/base/base_tests.gyp:rtc_base_tests_utils', |
+ '<(webrtc_root)/media/media.gyp:rtc_unittest_main', |
+ '<(webrtc_root)/pc/pc.gyp:rtc_pc', |
+ ], |
+ 'include_dirs': [ |
+ '<(DEPTH)/third_party/libsrtp/srtp', |
+ ], |
+ 'sources': [ |
+ 'bundlefilter_unittest.cc', |
+ 'channel_unittest.cc', |
+ 'channelmanager_unittest.cc', |
+ 'currentspeakermonitor_unittest.cc', |
+ 'mediasession_unittest.cc', |
+ 'rtcpmuxfilter_unittest.cc', |
+ 'srtpfilter_unittest.cc', |
+ ], |
+ # TODO(kjellander): Make the code compile without disabling these flags. |
+ # See https://bugs.chromium.org/p/webrtc/issues/detail?id=3307 |
+ 'cflags_cc!': [ |
+ '-Wnon-virtual-dtor', |
+ ], |
+ 'conditions': [ |
+ ['clang==0', { |
+ 'cflags': [ |
+ '-Wno-maybe-uninitialized', # Only exists for GCC. |
+ ], |
+ }], |
+ ['build_libsrtp==1', { |
+ 'dependencies': [ |
+ '<(DEPTH)/third_party/libsrtp/libsrtp.gyp:libsrtp', |
+ ], |
+ }], |
+ ['OS=="win"', { |
+ 'msvs_settings': { |
+ 'VCLinkerTool': { |
+ 'AdditionalDependencies': [ |
+ 'strmiids.lib', |
+ ], |
+ }, |
+ }, |
+ }], |
+ ], |
+ }, # target rtc_pc_unittests |
+ ], # targets |
+ }], # include_tests==1 |
+ ['test_isolation_mode != "noop"', { |
+ 'targets': [ |
+ { |
+ 'target_name': 'rtc_pc_unittests_run', |
+ 'type': 'none', |
+ 'dependencies': [ |
+ 'rtc_pc_unittests', |
+ ], |
+ 'includes': [ |
+ '../build/isolate.gypi', |
+ ], |
+ 'sources': [ |
+ 'rtc_pc_unittests.isolate', |
+ ], |
+ }, |
+ ], |
+ }], |
+ ], # conditions |
} |