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

Side by Side Diff: webrtc/webrtc_tests.gypi

Issue 2236473002: Add video_loopback to gn. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: . Created 4 years, 4 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 | « webrtc/BUILD.gn ('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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
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', 280 'test/run_test.cc',
kjellander_webrtc 2016/08/15 11:27:38 You have to remove this one to avoid duplicate sym
stefan-webrtc 2016/08/15 12:17:14 Thanks!
282 'test/run_test.h', 281 'test/run_test.h',
283 'video/video_loopback.cc', 282 'video/video_loopback.cc',
284 ], 283 ],
285 'conditions': [ 284 'conditions': [
286 ['OS=="mac"', { 285 ['OS=="mac"', {
287 'sources!': [ 286 'sources': [
287 'test/mac/run_test.mm',
288 ],
289 }, {
290 'sources': [
288 'test/run_test.cc', 291 'test/run_test.cc',
289 ], 292 ],
290 }], 293 }],
291 ], 294 ],
292 'dependencies': [ 295 'dependencies': [
293 'video_quality_test', 296 'video_quality_test',
294 '<(DEPTH)/testing/gtest.gyp:gtest', 297 '<(DEPTH)/testing/gtest.gyp:gtest',
295 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', 298 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
299 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default',
300 'test/test.gyp:field_trial',
296 'test/test.gyp:test_common', 301 'test/test.gyp:test_common',
297 'test/test.gyp:test_main',
298 'test/test.gyp:test_renderer', 302 'test/test.gyp:test_renderer',
299 'webrtc',
300 ], 303 ],
301 }, 304 },
302 { 305 {
303 'target_name': 'screenshare_loopback', 306 'target_name': 'screenshare_loopback',
304 'type': 'executable', 307 'type': 'executable',
305 'sources': [ 308 'sources': [
306 'test/mac/run_test.mm', 309 'test/mac/run_test.mm',
307 'test/run_test.cc', 310 'test/run_test.cc',
308 'test/run_test.h', 311 'test/run_test.h',
309 'video/screenshare_loopback.cc', 312 'video/screenshare_loopback.cc',
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 'build/isolate.gypi', 663 'build/isolate.gypi',
661 ], 664 ],
662 'sources': [ 665 'sources': [
663 'webrtc_perf_tests.isolate', 666 'webrtc_perf_tests.isolate',
664 ], 667 ],
665 }, 668 },
666 ], 669 ],
667 }], 670 }],
668 ], 671 ],
669 } 672 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698