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

Side by Side Diff: webrtc/webrtc_tests.gypi

Issue 1426643003: Create a 'webrtc_nonparallel_tests' target. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: use test_support instead of test_support_main Created 5 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
« webrtc/base/base_tests.gyp ('K') | « webrtc/test/test.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 24 matching lines...) Expand all
35 ], 35 ],
36 }, 36 },
37 { 37 {
38 'target_name': 'webrtc_tests', 38 'target_name': 'webrtc_tests',
39 'type': 'none', 39 'type': 'none',
40 'dependencies': [ 40 'dependencies': [
41 'video_engine_tests', 41 'video_engine_tests',
42 'video_loopback', 42 'video_loopback',
43 'video_replay', 43 'video_replay',
44 'webrtc_perf_tests', 44 'webrtc_perf_tests',
45 'webrtc_nonparallel_tests',
45 ], 46 ],
46 }, 47 },
47 { 48 {
48 'target_name': 'video_quality_test', 49 'target_name': 'video_quality_test',
49 'type': 'static_library', 50 'type': 'static_library',
50 'sources': [ 51 'sources': [
51 'video/video_quality_test.cc', 52 'video/video_quality_test.cc',
52 'video/video_quality_test.h', 53 'video/video_quality_test.h',
53 ], 54 ],
54 'dependencies': [ 55 'dependencies': [
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 'webrtc', 226 'webrtc',
226 ], 227 ],
227 'conditions': [ 228 'conditions': [
228 ['OS=="android"', { 229 ['OS=="android"', {
229 'dependencies': [ 230 'dependencies': [
230 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', 231 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
231 ], 232 ],
232 }], 233 }],
233 ], 234 ],
234 }, 235 },
236 {
237 'target_name': 'webrtc_nonparallel_tests',
238 'type': '<(gtest_target_type)',
239 'sources': [
240 'base/nullsocketserver_unittest.cc',
241 'base/physicalsocketserver_unittest.cc',
242 'base/socket_unittest.cc',
243 'base/socket_unittest.h',
244 'base/socketaddress_unittest.cc',
245 'base/virtualsocket_unittest.cc',
246 ],
247 'defines': [
248 'GTEST_RELATIVE_PATH',
249 ],
250 'dependencies': [
251 '<(DEPTH)/testing/gtest.gyp:gtest',
252 'base/base.gyp:rtc_base',
253 'test/test.gyp:test_main',
254 ],
255 'conditions': [
256 ['OS=="android"', {
257 'dependencies': [
258 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
259 ],
260 }],
261 ['OS=="win"', {
262 'sources': [
263 'base/win32socketserver_unittest.cc',
264 ],
265 'sources!': [
266 # TODO(ronghuawu): Fix TestUdpReadyToSendIPv6 on windows bot
267 # then reenable these tests.
268 'base/physicalsocketserver_unittest.cc',
kjellander_webrtc 2015/10/28 15:53:42 I don't remember if there's anything stopping us f
pbos-webrtc 2015/10/29 09:46:33 This one (!= win) is currently only here to disabl
kjellander_webrtc 2015/10/29 11:30:16 What I meant is that these files could be removed
269 'base/socket_unittest.cc',
270 'base/win32socketserver_unittest.cc',
271 ],
272 }],
273 ['OS=="mac"', {
274 'sources': [
275 'base/macsocketserver_unittest.cc',
276 ],
277 }],
278 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', {
279 'defines': [
280 'CARBON_DEPRECATED=YES',
281 ],
282 }],
283 ],
284 },
235 ], 285 ],
236 'conditions': [ 286 'conditions': [
237 ['OS=="android"', { 287 ['OS=="android"', {
238 'targets': [ 288 'targets': [
239 { 289 {
240 'target_name': 'rtc_unittests_apk_target', 290 'target_name': 'rtc_unittests_apk_target',
241 'type': 'none', 291 'type': 'none',
242 'dependencies': [ 292 'dependencies': [
243 '<(apk_tests_path):rtc_unittests_apk', 293 '<(apk_tests_path):rtc_unittests_apk',
244 ], 294 ],
245 }, 295 },
246 { 296 {
247 'target_name': 'video_engine_tests_apk_target', 297 'target_name': 'video_engine_tests_apk_target',
248 'type': 'none', 298 'type': 'none',
249 'dependencies': [ 299 'dependencies': [
250 '<(apk_tests_path):video_engine_tests_apk', 300 '<(apk_tests_path):video_engine_tests_apk',
251 ], 301 ],
252 }, 302 },
253 { 303 {
254 'target_name': 'webrtc_perf_tests_apk_target', 304 'target_name': 'webrtc_perf_tests_apk_target',
255 'type': 'none', 305 'type': 'none',
256 'dependencies': [ 306 'dependencies': [
257 '<(apk_tests_path):webrtc_perf_tests_apk', 307 '<(apk_tests_path):webrtc_perf_tests_apk',
258 ], 308 ],
259 }, 309 },
310 {
311 'target_name': 'webrtc_nonparallel_tests_apk_target',
312 'type': 'none',
313 'dependencies': [
314 '<(apk_tests_path):webrtc_nonparallel_tests_apk',
315 ],
316 },
260 ], 317 ],
261 }], 318 }],
262 ['test_isolation_mode != "noop"', { 319 ['test_isolation_mode != "noop"', {
263 'targets': [ 320 'targets': [
264 { 321 {
265 'target_name': 'rtc_unittests_run', 322 'target_name': 'rtc_unittests_run',
266 'type': 'none', 323 'type': 'none',
267 'dependencies': [ 324 'dependencies': [
268 'rtc_unittests', 325 'rtc_unittests',
269 ], 326 ],
(...skipping 27 matching lines...) Expand all
297 'build/isolate.gypi', 354 'build/isolate.gypi',
298 ], 355 ],
299 'sources': [ 356 'sources': [
300 'webrtc_perf_tests.isolate', 357 'webrtc_perf_tests.isolate',
301 ], 358 ],
302 }, 359 },
303 ], 360 ],
304 }], 361 }],
305 ], 362 ],
306 } 363 }
OLDNEW
« webrtc/base/base_tests.gyp ('K') | « webrtc/test/test.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698