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

Side by Side Diff: webrtc/webrtc_tests.gypi

Issue 2007773003: Separate out xml dependencies and tests from rtc_unittests into a separate target. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | 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 {
11 'target_name': 'rtc_unittests', 11 'target_name': 'rtc_unittests',
12 'type': '<(gtest_target_type)', 12 'type': '<(gtest_target_type)',
13 'dependencies': [ 13 'dependencies': [
14 'base/base.gyp:rtc_base', 14 'base/base.gyp:rtc_base',
15 'base/base_tests.gyp:rtc_base_tests_utils', 15 'base/base_tests.gyp:rtc_base_tests_utils',
16 'base/base_tests.gyp:rtc_base_tests', 16 'base/base_tests.gyp:rtc_base_tests',
17 'libjingle/xmllite/xmllite.gyp:rtc_xmllite',
18 'libjingle/xmpp/xmpp.gyp:rtc_xmpp',
19 'p2p/p2p.gyp:rtc_p2p', 17 'p2p/p2p.gyp:rtc_p2p',
20 'p2p/p2p.gyp:libstunprober', 18 'p2p/p2p.gyp:libstunprober',
21 'p2p/p2p.gyp:rtc_p2p_unittest', 19 'p2p/p2p.gyp:rtc_p2p_unittest',
22 'libjingle/xmllite/xmllite.gyp:rtc_xmllite_unittest',
23 'libjingle/xmpp/xmpp.gyp:rtc_xmpp_unittest',
24 '<(DEPTH)/testing/gtest.gyp:gtest', 20 '<(DEPTH)/testing/gtest.gyp:gtest',
25 '<(DEPTH)/testing/gmock.gyp:gmock', 21 '<(DEPTH)/testing/gmock.gyp:gmock',
26 ], 22 ],
27 'conditions': [ 23 'conditions': [
28 ['OS=="android"', { 24 ['OS=="android"', {
29 'dependencies': [ 25 'dependencies': [
30 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', 26 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
31 ], 27 ],
32 }], 28 }],
33 ['OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7")', { 29 ['OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7")', {
34 'dependencies': [ 30 'dependencies': [
35 'sdk/sdk_tests.gyp:rtc_sdk_peerconnection_objc_tests', 31 'sdk/sdk_tests.gyp:rtc_sdk_peerconnection_objc_tests',
36 ], 32 ],
37 }], 33 }],
38 ], 34 ],
39 }, 35 },
40 { 36 {
37 'target_name': 'xmllite_xmpp_unittests',
38 'type': '<(gtest_target_type)',
39 'dependencies': [
40 'base/base_tests.gyp:rtc_base_tests_utils', # needed for main()
41 'libjingle/xmllite/xmllite.gyp:rtc_xmllite',
42 'libjingle/xmpp/xmpp.gyp:rtc_xmpp',
43 'libjingle/xmllite/xmllite.gyp:rtc_xmllite_unittest',
44 'libjingle/xmpp/xmpp.gyp:rtc_xmpp_unittest',
45 '<(DEPTH)/testing/gtest.gyp:gtest',
46 ],
47 },
48 {
41 'target_name': 'webrtc_tests', 49 'target_name': 'webrtc_tests',
42 'type': 'none', 50 'type': 'none',
43 'dependencies': [ 51 'dependencies': [
44 'video_engine_tests', 52 'video_engine_tests',
45 'video_loopback', 53 'video_loopback',
46 'video_replay', 54 'video_replay',
47 'webrtc_perf_tests', 55 'webrtc_perf_tests',
48 'webrtc_nonparallel_tests', 56 'webrtc_nonparallel_tests',
49 ], 57 ],
50 }, 58 },
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
457 'build/isolate.gypi', 465 'build/isolate.gypi',
458 ], 466 ],
459 'sources': [ 467 'sources': [
460 'webrtc_perf_tests.isolate', 468 'webrtc_perf_tests.isolate',
461 ], 469 ],
462 }, 470 },
463 ], 471 ],
464 }], 472 }],
465 ], 473 ],
466 } 474 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698