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 27 matching lines...) Expand all Loading... |
38 'target_name': 'webrtc_tests', | 38 'target_name': 'webrtc_tests', |
39 'type': 'none', | 39 'type': 'none', |
40 'dependencies': [ | 40 'dependencies': [ |
41 'video_engine_tests', | 41 'video_engine_tests', |
42 'video_loopback', | 42 'video_loopback', |
43 'video_replay', | 43 'video_replay', |
44 'webrtc_perf_tests', | 44 'webrtc_perf_tests', |
45 ], | 45 ], |
46 }, | 46 }, |
47 { | 47 { |
| 48 'target_name': 'full_stack_quality_sampler', |
| 49 'type': 'executable', |
| 50 'sources': [ |
| 51 'test/mac/run_test.mm', |
| 52 'test/run_test.cc', |
| 53 'test/run_test.h', |
| 54 'video/full_stack.cc', |
| 55 'video/full_stack_quality_sampler.cc', |
| 56 ], |
| 57 'conditions': [ |
| 58 ['OS=="mac"', { |
| 59 'sources!': [ |
| 60 'test/run_test.cc', |
| 61 ], |
| 62 }], |
| 63 ], |
| 64 'dependencies': [ |
| 65 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 66 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
| 67 '<(webrtc_root)/modules/modules.gyp:video_capture', |
| 68 'test/webrtc_test_common.gyp:webrtc_test_common', |
| 69 'test/test.gyp:test_main', |
| 70 'webrtc', |
| 71 ], |
| 72 }, |
| 73 { |
48 'target_name': 'loopback_base', | 74 'target_name': 'loopback_base', |
49 'type': 'static_library', | 75 'type': 'static_library', |
50 'sources': [ | 76 'sources': [ |
51 'video/loopback.cc', | 77 'video/loopback.cc', |
52 'video/loopback.h', | 78 'video/loopback.h', |
53 ], | 79 ], |
54 'dependencies': [ | 80 'dependencies': [ |
55 '<(DEPTH)/testing/gtest.gyp:gtest', | 81 '<(DEPTH)/testing/gtest.gyp:gtest', |
56 '<(webrtc_root)/modules/modules.gyp:video_capture_module_internal_impl', | 82 '<(webrtc_root)/modules/modules.gyp:video_capture_module_internal_impl', |
57 '<(webrtc_root)/modules/modules.gyp:video_render', | 83 '<(webrtc_root)/modules/modules.gyp:video_render', |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 'build/isolate.gypi', | 317 'build/isolate.gypi', |
292 ], | 318 ], |
293 'sources': [ | 319 'sources': [ |
294 'webrtc_perf_tests.isolate', | 320 'webrtc_perf_tests.isolate', |
295 ], | 321 ], |
296 }, | 322 }, |
297 ], | 323 ], |
298 }], | 324 }], |
299 ], | 325 ], |
300 } | 326 } |
OLD | NEW |