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

Side by Side Diff: webrtc/webrtc_tests.gypi

Issue 1227923005: Split webrtc/video into webrtc/{audio,call,video}. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years, 2 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/webrtc.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
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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', 139 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
140 'test/webrtc_test_common.gyp:webrtc_test_common', 140 'test/webrtc_test_common.gyp:webrtc_test_common',
141 'test/webrtc_test_common.gyp:webrtc_test_renderer', 141 'test/webrtc_test_common.gyp:webrtc_test_renderer',
142 '<(webrtc_root)/modules/modules.gyp:video_capture', 142 '<(webrtc_root)/modules/modules.gyp:video_capture',
143 '<(webrtc_root)/modules/modules.gyp:video_render', 143 '<(webrtc_root)/modules/modules.gyp:video_render',
144 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_defa ult', 144 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_defa ult',
145 'webrtc', 145 'webrtc',
146 ], 146 ],
147 }, 147 },
148 { 148 {
149 # TODO(pbos): Rename target to webrtc_tests or rtc_tests, this target is 149 # TODO(pbos): Add separate target webrtc_audio_tests and move files there.
150 # not meant to only include video.
151 'target_name': 'video_engine_tests', 150 'target_name': 'video_engine_tests',
152 'type': '<(gtest_target_type)', 151 'type': '<(gtest_target_type)',
153 'sources': [ 152 'sources': [
153 'audio/audio_receive_stream_unittest.cc',
154 'call/bitrate_estimator_tests.cc',
155 'call/packet_injection_tests.cc',
154 'test/common_unittest.cc', 156 'test/common_unittest.cc',
155 'test/testsupport/metrics/video_metrics_unittest.cc', 157 'test/testsupport/metrics/video_metrics_unittest.cc',
156 'tools/agc/agc_manager_unittest.cc', 158 'tools/agc/agc_manager_unittest.cc',
157 'video/audio_receive_stream_unittest.cc',
158 'video/bitrate_estimator_tests.cc',
159 'video/end_to_end_tests.cc', 159 'video/end_to_end_tests.cc',
160 'video/packet_injection_tests.cc',
161 'video/send_statistics_proxy_unittest.cc', 160 'video/send_statistics_proxy_unittest.cc',
162 'video/video_capture_input_unittest.cc', 161 'video/video_capture_input_unittest.cc',
163 'video/video_decoder_unittest.cc', 162 'video/video_decoder_unittest.cc',
164 'video/video_encoder_unittest.cc', 163 'video/video_encoder_unittest.cc',
165 'video/video_send_stream_tests.cc', 164 'video/video_send_stream_tests.cc',
166 ], 165 ],
167 'dependencies': [ 166 'dependencies': [
168 '<(DEPTH)/testing/gmock.gyp:gmock', 167 '<(DEPTH)/testing/gmock.gyp:gmock',
169 '<(DEPTH)/testing/gtest.gyp:gtest', 168 '<(DEPTH)/testing/gtest.gyp:gtest',
170 '<(webrtc_root)/common.gyp:webrtc_common', 169 '<(webrtc_root)/common.gyp:webrtc_common',
(...skipping 16 matching lines...) Expand all
187 }], 186 }],
188 ['enable_protobuf==1', { 187 ['enable_protobuf==1', {
189 'defines': [ 188 'defines': [
190 'ENABLE_RTC_EVENT_LOG', 189 'ENABLE_RTC_EVENT_LOG',
191 ], 190 ],
192 'dependencies': [ 191 'dependencies': [
193 'webrtc.gyp:rtc_event_log', 192 'webrtc.gyp:rtc_event_log',
194 'webrtc.gyp:rtc_event_log_proto', 193 'webrtc.gyp:rtc_event_log_proto',
195 ], 194 ],
196 'sources': [ 195 'sources': [
197 'video/rtc_event_log_unittest.cc', 196 'call/rtc_event_log_unittest.cc',
198 ], 197 ],
199 }], 198 }],
200 ], 199 ],
201 }, 200 },
202 { 201 {
203 'target_name': 'webrtc_perf_tests', 202 'target_name': 'webrtc_perf_tests',
204 'type': '<(gtest_target_type)', 203 'type': '<(gtest_target_type)',
205 'sources': [ 204 'sources': [
205 'call/call_perf_tests.cc',
206 'modules/audio_coding/neteq/test/neteq_performance_unittest.cc', 206 'modules/audio_coding/neteq/test/neteq_performance_unittest.cc',
207 'modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc', 207 'modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc',
208
209 'tools/agc/agc_manager_integrationtest.cc', 208 'tools/agc/agc_manager_integrationtest.cc',
210 'video/call_perf_tests.cc',
211 'video/full_stack.cc', 209 'video/full_stack.cc',
212 'video/rampup_tests.cc', 210 'video/rampup_tests.cc',
213 'video/rampup_tests.h', 211 'video/rampup_tests.h',
214 ], 212 ],
215 'dependencies': [ 213 'dependencies': [
216 '<(DEPTH)/testing/gmock.gyp:gmock', 214 '<(DEPTH)/testing/gmock.gyp:gmock',
217 '<(DEPTH)/testing/gtest.gyp:gtest', 215 '<(DEPTH)/testing/gtest.gyp:gtest',
218 '<(webrtc_root)/modules/modules.gyp:video_capture', 216 '<(webrtc_root)/modules/modules.gyp:video_capture',
219 '<(webrtc_root)/test/test.gyp:channel_transport', 217 '<(webrtc_root)/test/test.gyp:channel_transport',
220 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine', 218 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine',
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 'build/isolate.gypi', 299 'build/isolate.gypi',
302 ], 300 ],
303 'sources': [ 301 'sources': [
304 'webrtc_perf_tests.isolate', 302 'webrtc_perf_tests.isolate',
305 ], 303 ],
306 }, 304 },
307 ], 305 ],
308 }], 306 }],
309 ], 307 ],
310 } 308 }
OLDNEW
« no previous file with comments | « webrtc/webrtc.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698