OLD | NEW |
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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
464 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', | 464 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', |
465 ], | 465 ], |
466 }], | 466 }], |
467 ], | 467 ], |
468 }, | 468 }, |
469 { | 469 { |
470 'target_name': 'webrtc_nonparallel_tests', | 470 'target_name': 'webrtc_nonparallel_tests', |
471 'type': '<(gtest_target_type)', | 471 'type': '<(gtest_target_type)', |
472 'sources': [ | 472 'sources': [ |
473 'base/nullsocketserver_unittest.cc', | 473 'base/nullsocketserver_unittest.cc', |
| 474 'base/physicalsocketserver_unittest.cc', |
| 475 'base/socket_unittest.cc', |
| 476 'base/socket_unittest.h', |
474 'base/socketaddress_unittest.cc', | 477 'base/socketaddress_unittest.cc', |
475 'base/virtualsocket_unittest.cc', | 478 'base/virtualsocket_unittest.cc', |
476 ], | 479 ], |
477 'defines': [ | 480 'defines': [ |
478 'GTEST_RELATIVE_PATH', | 481 'GTEST_RELATIVE_PATH', |
479 ], | 482 ], |
480 'dependencies': [ | 483 'dependencies': [ |
481 '<(DEPTH)/testing/gtest.gyp:gtest', | 484 '<(DEPTH)/testing/gtest.gyp:gtest', |
482 'base/base.gyp:rtc_base', | 485 'base/base.gyp:rtc_base', |
483 'test/test.gyp:test_main', | 486 'test/test.gyp:test_main', |
484 ], | 487 ], |
485 'conditions': [ | 488 'conditions': [ |
486 ['OS=="android"', { | 489 ['OS=="android"', { |
487 'dependencies': [ | 490 'dependencies': [ |
488 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', | 491 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', |
489 ], | 492 ], |
490 }], | 493 }], |
491 ['OS=="win"', { | 494 ['OS=="win"', { |
492 'sources': [ | 495 'sources': [ |
493 # TODO(ronghuawu): Fix TestUdpReadyToSendIPv6 on windows bot | 496 'base/win32socketserver_unittest.cc', |
494 # then reenable these tests. | |
495 # 'base/win32socketserver_unittest.cc', | |
496 ], | |
497 }, { | |
498 # TODO(pbos): Move test disabling to ifdefs within the test files | |
499 # instead of here. | |
500 'sources': [ | |
501 'base/physicalsocketserver_unittest.cc', | |
502 'base/socket_unittest.cc', | |
503 'base/socket_unittest.h', | |
504 ], | 497 ], |
505 }], | 498 }], |
506 ['OS=="mac"', { | 499 ['OS=="mac"', { |
507 'sources': [ | 500 'sources': [ |
508 'base/macsocketserver_unittest.cc', | 501 'base/macsocketserver_unittest.cc', |
509 ], | 502 ], |
510 }], | 503 }], |
511 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { | 504 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { |
512 'defines': [ | 505 'defines': [ |
513 'CARBON_DEPRECATED=YES', | 506 'CARBON_DEPRECATED=YES', |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
667 'build/isolate.gypi', | 660 'build/isolate.gypi', |
668 ], | 661 ], |
669 'sources': [ | 662 'sources': [ |
670 'webrtc_perf_tests.isolate', | 663 'webrtc_perf_tests.isolate', |
671 ], | 664 ], |
672 }, | 665 }, |
673 ], | 666 ], |
674 }], | 667 }], |
675 ], | 668 ], |
676 } | 669 } |
OLD | NEW |