OLD | NEW |
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 14 matching lines...) Expand all Loading... |
25 'sound/sound.gyp:rtc_sound', | 25 'sound/sound.gyp:rtc_sound', |
26 '<(DEPTH)/testing/gtest.gyp:gtest', | 26 '<(DEPTH)/testing/gtest.gyp:gtest', |
27 '<(DEPTH)/testing/gmock.gyp:gmock', | 27 '<(DEPTH)/testing/gmock.gyp:gmock', |
28 ], | 28 ], |
29 'conditions': [ | 29 'conditions': [ |
30 ['OS=="android"', { | 30 ['OS=="android"', { |
31 'dependencies': [ | 31 'dependencies': [ |
32 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', | 32 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', |
33 ], | 33 ], |
34 }], | 34 }], |
| 35 ['OS=="ios"', { |
| 36 'dependencies': [ |
| 37 'api/api_tests.gyp:rtc_api_objc_test', |
| 38 ] |
| 39 }] |
35 ], | 40 ], |
36 }, | 41 }, |
37 { | 42 { |
38 'target_name': 'webrtc_tests', | 43 'target_name': 'webrtc_tests', |
39 'type': 'none', | 44 'type': 'none', |
40 'dependencies': [ | 45 'dependencies': [ |
41 'video_engine_tests', | 46 'video_engine_tests', |
42 'video_loopback', | 47 'video_loopback', |
43 'video_replay', | 48 'video_replay', |
44 'webrtc_perf_tests', | 49 'webrtc_perf_tests', |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 'build/isolate.gypi', | 384 'build/isolate.gypi', |
380 ], | 385 ], |
381 'sources': [ | 386 'sources': [ |
382 'webrtc_perf_tests.isolate', | 387 'webrtc_perf_tests.isolate', |
383 ], | 388 ], |
384 }, | 389 }, |
385 ], | 390 ], |
386 }], | 391 }], |
387 ], | 392 ], |
388 } | 393 } |
OLD | NEW |