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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 'dependencies!': [ | 270 'dependencies!': [ |
271 '<(webrtc_root)/modules/modules.gyp:video_capture_module_internal_im
pl', | 271 '<(webrtc_root)/modules/modules.gyp:video_capture_module_internal_im
pl', |
272 ], | 272 ], |
273 }], | 273 }], |
274 ], | 274 ], |
275 }, | 275 }, |
276 { | 276 { |
277 'target_name': 'video_loopback', | 277 'target_name': 'video_loopback', |
278 'type': 'executable', | 278 'type': 'executable', |
279 'sources': [ | 279 'sources': [ |
280 'test/mac/run_test.mm', | |
281 'test/run_test.cc', | |
282 'test/run_test.h', | 280 'test/run_test.h', |
283 'video/video_loopback.cc', | 281 'video/video_loopback.cc', |
284 ], | 282 ], |
285 'conditions': [ | 283 'conditions': [ |
286 ['OS=="mac"', { | 284 ['OS=="mac"', { |
287 'sources!': [ | 285 'sources': [ |
| 286 'test/mac/run_test.mm', |
| 287 ], |
| 288 }, { |
| 289 'sources': [ |
288 'test/run_test.cc', | 290 'test/run_test.cc', |
289 ], | 291 ], |
290 }], | 292 }], |
291 ], | 293 ], |
292 'dependencies': [ | 294 'dependencies': [ |
293 'video_quality_test', | 295 'video_quality_test', |
294 '<(DEPTH)/testing/gtest.gyp:gtest', | 296 '<(DEPTH)/testing/gtest.gyp:gtest', |
295 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 297 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
| 298 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default', |
| 299 'test/test.gyp:field_trial', |
296 'test/test.gyp:test_common', | 300 'test/test.gyp:test_common', |
297 'test/test.gyp:test_main', | |
298 'test/test.gyp:test_renderer', | 301 'test/test.gyp:test_renderer', |
299 'webrtc', | |
300 ], | 302 ], |
301 }, | 303 }, |
302 { | 304 { |
303 'target_name': 'screenshare_loopback', | 305 'target_name': 'screenshare_loopback', |
304 'type': 'executable', | 306 'type': 'executable', |
305 'sources': [ | 307 'sources': [ |
306 'test/mac/run_test.mm', | 308 'test/mac/run_test.mm', |
307 'test/run_test.cc', | 309 'test/run_test.cc', |
308 'test/run_test.h', | 310 'test/run_test.h', |
309 'video/screenshare_loopback.cc', | 311 'video/screenshare_loopback.cc', |
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
660 'build/isolate.gypi', | 662 'build/isolate.gypi', |
661 ], | 663 ], |
662 'sources': [ | 664 'sources': [ |
663 'webrtc_perf_tests.isolate', | 665 'webrtc_perf_tests.isolate', |
664 ], | 666 ], |
665 }, | 667 }, |
666 ], | 668 ], |
667 }], | 669 }], |
668 ], | 670 ], |
669 } | 671 } |
OLD | NEW |