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

Side by Side Diff: webrtc/webrtc_tests.gypi

Issue 2041743003: GN: Add SDK tests to rtc_unittests. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Final fixes Created 4 years, 6 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 unified diff | Download patch
« webrtc/sdk/BUILD.gn ('K') | « webrtc/webrtc.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 { 8 {
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 'p2p/quic/quictransportchannel_unittest.cc', 176 'p2p/quic/quictransportchannel_unittest.cc',
177 'p2p/quic/reliablequicstream_unittest.cc', 177 'p2p/quic/reliablequicstream_unittest.cc',
178 ], 178 ],
179 }], 179 }],
180 ['OS=="android"', { 180 ['OS=="android"', {
181 'dependencies': [ 181 'dependencies': [
182 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', 182 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
183 ], 183 ],
184 }], 184 }],
185 ['OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7")', { 185 ['OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7")', {
186 'includes': [
187 'build/objc_common.gypi',
188 ],
186 'dependencies': [ 189 'dependencies': [
187 'sdk/sdk_tests.gyp:rtc_sdk_peerconnection_objc_tests', 190 'sdk/sdk.gyp:rtc_sdk_peerconnection_objc',
191 'system_wrappers/system_wrappers.gyp:metrics_default',
188 ], 192 ],
193 'sources': [
194 'sdk/objc/Framework/UnitTests/RTCConfigurationTest.mm',
195 'sdk/objc/Framework/UnitTests/RTCDataChannelConfigurationTest.mm',
196 'sdk/objc/Framework/UnitTests/RTCIceCandidateTest.mm',
197 'sdk/objc/Framework/UnitTests/RTCIceServerTest.mm',
198 'sdk/objc/Framework/UnitTests/RTCMediaConstraintsTest.mm',
199 'sdk/objc/Framework/UnitTests/RTCSessionDescriptionTest.mm',
200 ],
201 'xcode_settings': {
202 # |-ObjC| flag needed to make sure category method implementations
203 # are included:
204 # https://developer.apple.com/library/mac/qa/qa1490/_index.html
205 'OTHER_LDFLAGS': ['-ObjC'],
206 },
189 }], 207 }],
190 ], 208 ],
191 }, 209 },
192 { 210 {
193 'target_name': 'xmllite_xmpp_unittests', 211 'target_name': 'xmllite_xmpp_unittests',
194 'type': '<(gtest_target_type)', 212 'type': '<(gtest_target_type)',
195 'dependencies': [ 213 'dependencies': [
196 'base/base_tests.gyp:rtc_base_tests_utils', # needed for main() 214 'base/base_tests.gyp:rtc_base_tests_utils', # needed for main()
197 'libjingle/xmllite/xmllite.gyp:rtc_xmllite', 215 'libjingle/xmllite/xmllite.gyp:rtc_xmllite',
198 'libjingle/xmpp/xmpp.gyp:rtc_xmpp', 216 'libjingle/xmpp/xmpp.gyp:rtc_xmpp',
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
649 'build/isolate.gypi', 667 'build/isolate.gypi',
650 ], 668 ],
651 'sources': [ 669 'sources': [
652 'webrtc_perf_tests.isolate', 670 'webrtc_perf_tests.isolate',
653 ], 671 ],
654 }, 672 },
655 ], 673 ],
656 }], 674 }],
657 ], 675 ],
658 } 676 }
OLDNEW
« webrtc/sdk/BUILD.gn ('K') | « webrtc/webrtc.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698