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

Side by Side Diff: webrtc/webrtc_tests.gypi

Issue 2509703002: Remove all references to GYP (Closed)
Patch Set: Rebased Created 4 years, 1 month 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/webrtc_examples.gyp ('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
(Empty)
1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
2 #
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
5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree.
8 {
9 'targets': [
10 {
11 'target_name': 'video_quality_test',
12 'type': 'static_library',
13 'sources': [
14 'video/video_quality_test.cc',
15 'video/video_quality_test.h',
16 ],
17 'dependencies': [
18 '<(DEPTH)/testing/gtest.gyp:gtest',
19 '<(webrtc_root)/modules/modules.gyp:video_capture_module_internal_impl',
20 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
21 'webrtc',
22 ],
23 'conditions': [
24 ['OS=="android"', {
25 'dependencies!': [
26 '<(webrtc_root)/modules/modules.gyp:video_capture_module_internal_im pl',
27 ],
28 }],
29 ],
30 },
31 {
32 'target_name': 'screenshare_loopback',
33 'type': 'executable',
34 'sources': [
35 'test/mac/run_test.mm',
36 'test/run_test.cc',
37 'test/run_test.h',
38 'video/screenshare_loopback.cc',
39 ],
40 'conditions': [
41 ['OS=="mac"', {
42 'sources!': [
43 'test/run_test.cc',
44 ],
45 }],
46 ],
47 'dependencies': [
48 'video_quality_test',
49 '<(DEPTH)/testing/gtest.gyp:gtest',
50 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
51 'test/test.gyp:test_common',
52 'test/test.gyp:test_main',
53 'test/test.gyp:test_renderer',
54 'webrtc',
55 ],
56 },
57 {
58 'target_name': 'video_replay',
59 'type': 'executable',
60 'sources': [
61 'test/mac/run_test.mm',
62 'test/run_test.cc',
63 'test/run_test.h',
64 'video/replay.cc',
65 ],
66 'conditions': [
67 ['OS=="mac"', {
68 'sources!': [
69 'test/run_test.cc',
70 ],
71 }],
72 ],
73 'dependencies': [
74 '<(DEPTH)/testing/gtest.gyp:gtest',
75 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
76 'test/test.gyp:test_common',
77 'test/test.gyp:test_renderer',
78 '<(webrtc_root)/modules/modules.gyp:video_capture',
79 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_defa ult',
80 'webrtc',
81 ],
82 },
83 ],
84 }
OLDNEW
« no previous file with comments | « webrtc/webrtc_examples.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698