| 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', | |
| 477 'base/socketaddress_unittest.cc', | 474 'base/socketaddress_unittest.cc', |
| 478 'base/virtualsocket_unittest.cc', | 475 'base/virtualsocket_unittest.cc', |
| 479 ], | 476 ], |
| 480 'defines': [ | 477 'defines': [ |
| 481 'GTEST_RELATIVE_PATH', | 478 'GTEST_RELATIVE_PATH', |
| 482 ], | 479 ], |
| 483 'dependencies': [ | 480 'dependencies': [ |
| 484 '<(DEPTH)/testing/gtest.gyp:gtest', | 481 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 485 'base/base.gyp:rtc_base', | 482 'base/base.gyp:rtc_base', |
| 486 'test/test.gyp:test_main', | 483 'test/test.gyp:test_main', |
| 487 ], | 484 ], |
| 488 'conditions': [ | 485 'conditions': [ |
| 489 ['OS=="android"', { | 486 ['OS=="android"', { |
| 490 'dependencies': [ | 487 'dependencies': [ |
| 491 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', | 488 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', |
| 492 ], | 489 ], |
| 493 }], | 490 }], |
| 494 ['OS=="win"', { | 491 ['OS=="win"', { |
| 495 'sources': [ | 492 'sources': [ |
| 496 'base/win32socketserver_unittest.cc', | 493 # TODO(ronghuawu): Fix TestUdpReadyToSendIPv6 on windows bot |
| 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', |
| 497 ], | 504 ], |
| 498 }], | 505 }], |
| 499 ['OS=="mac"', { | 506 ['OS=="mac"', { |
| 500 'sources': [ | 507 'sources': [ |
| 501 'base/macsocketserver_unittest.cc', | 508 'base/macsocketserver_unittest.cc', |
| 502 ], | 509 ], |
| 503 }], | 510 }], |
| 504 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { | 511 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { |
| 505 'defines': [ | 512 'defines': [ |
| 506 'CARBON_DEPRECATED=YES', | 513 'CARBON_DEPRECATED=YES', |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 660 'build/isolate.gypi', | 667 'build/isolate.gypi', |
| 661 ], | 668 ], |
| 662 'sources': [ | 669 'sources': [ |
| 663 'webrtc_perf_tests.isolate', | 670 'webrtc_perf_tests.isolate', |
| 664 ], | 671 ], |
| 665 }, | 672 }, |
| 666 ], | 673 ], |
| 667 }], | 674 }], |
| 668 ], | 675 ], |
| 669 } | 676 } |
| OLD | NEW |