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

Side by Side Diff: webrtc/webrtc.gyp

Issue 1610243002: Move talk/app/webrtc to webrtc/api (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Updated location for peerconnection_unittests.isolate Created 4 years, 11 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
OLDNEW
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2012 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 'conditions': [ 9 'conditions': [
10 ['include_tests==1', { 10 ['include_tests==1', {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 }], 48 }],
49 ], 49 ],
50 'includes': [ 50 'includes': [
51 'build/common.gypi', 51 'build/common.gypi',
52 'audio/webrtc_audio.gypi', 52 'audio/webrtc_audio.gypi',
53 'call/webrtc_call.gypi', 53 'call/webrtc_call.gypi',
54 'video/webrtc_video.gypi', 54 'video/webrtc_video.gypi',
55 ], 55 ],
56 'variables': { 56 'variables': {
57 'webrtc_all_dependencies': [ 57 'webrtc_all_dependencies': [
58 'api/api.gyp:*',
58 'base/base.gyp:*', 59 'base/base.gyp:*',
59 'sound/sound.gyp:*', 60 'sound/sound.gyp:*',
60 'common.gyp:*', 61 'common.gyp:*',
61 'common_audio/common_audio.gyp:*', 62 'common_audio/common_audio.gyp:*',
62 'common_video/common_video.gyp:*', 63 'common_video/common_video.gyp:*',
63 'modules/modules.gyp:*', 64 'modules/modules.gyp:*',
64 'p2p/p2p.gyp:*', 65 'p2p/p2p.gyp:*',
65 'system_wrappers/system_wrappers.gyp:*', 66 'system_wrappers/system_wrappers.gyp:*',
66 'tools/tools.gyp:*', 67 'tools/tools.gyp:*',
67 'voice_engine/voice_engine.gyp:*', 68 'voice_engine/voice_engine.gyp:*',
68 '<(webrtc_vp8_dir)/vp8.gyp:*', 69 '<(webrtc_vp8_dir)/vp8.gyp:*',
69 '<(webrtc_vp9_dir)/vp9.gyp:*', 70 '<(webrtc_vp9_dir)/vp9.gyp:*',
70 ], 71 ],
71 }, 72 },
72 'targets': [ 73 'targets': [
73 { 74 {
74 'target_name': 'webrtc_all', 75 'target_name': 'webrtc_all',
75 'type': 'none', 76 'type': 'none',
76 'dependencies': [ 77 'dependencies': [
77 '<@(webrtc_all_dependencies)', 78 '<@(webrtc_all_dependencies)',
78 'webrtc', 79 'webrtc',
79 ], 80 ],
80 'conditions': [ 81 'conditions': [
81 ['include_tests==1', { 82 ['include_tests==1', {
82 'dependencies': [ 83 'dependencies': [
84 'api/api_tests.gyp:*',
83 'common_video/common_video_unittests.gyp:*', 85 'common_video/common_video_unittests.gyp:*',
84 'rtc_unittests', 86 'rtc_unittests',
85 'system_wrappers/system_wrappers_tests.gyp:*', 87 'system_wrappers/system_wrappers_tests.gyp:*',
86 'test/metrics.gyp:*', 88 'test/metrics.gyp:*',
87 'test/test.gyp:*', 89 'test/test.gyp:*',
88 'test/webrtc_test_common.gyp:*', 90 'test/webrtc_test_common.gyp:*',
89 'webrtc_tests', 91 'webrtc_tests',
90 ], 92 ],
91 }], 93 }],
92 ], 94 ],
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 ], 147 ],
146 'defines': [ 148 'defines': [
147 'ENABLE_RTC_EVENT_LOG', 149 'ENABLE_RTC_EVENT_LOG',
148 ], 150 ],
149 }], 151 }],
150 ], 152 ],
151 }, 153 },
152 154
153 ], 155 ],
154 } 156 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698