OLD | NEW |
---|---|
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. | 9 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. |
10 | 10 |
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
605 "test:test_common", | 605 "test:test_common", |
606 "test:test_main", | 606 "test:test_main", |
607 "video:video_tests", | 607 "video:video_tests", |
608 ] | 608 ] |
609 if (is_clang) { | 609 if (is_clang) { |
610 # Suppress warnings from the Chromium Clang plugin. | 610 # Suppress warnings from the Chromium Clang plugin. |
611 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 611 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
612 configs -= [ "//build/config/clang:find_bad_constructs" ] | 612 configs -= [ "//build/config/clang:find_bad_constructs" ] |
613 } | 613 } |
614 } | 614 } |
615 | |
616 test("webrtc_nonparallel_tests") { | |
617 testonly = true | |
618 configs += [ | |
619 ":common_config", | |
620 ":rtc_unittests_config", | |
621 ] | |
622 public_configs = [ ":common_inherited_config" ] | |
623 sources = [ | |
624 "base/nullsocketserver_unittest.cc", | |
625 "base/physicalsocketserver_unittest.cc", | |
626 "base/socket_unittest.cc", | |
627 "base/socket_unittest.h", | |
628 "base/socketaddress_unittest.cc", | |
629 "base/virtualsocket_unittest.cc", | |
630 ] | |
631 deps = [ | |
632 "base:rtc_base", | |
633 "base:rtc_base_tests_utils", | |
634 "//testing/gtest", | |
635 ] | |
636 if (is_win) { | |
637 sources += [ "base/win32socketserver_unittest.cc" ] | |
638 | |
639 # TODO(ronghuawu): Fix TestUdpReadyToSendIPv6 on windows bot then reenable | |
640 # these tests. | |
641 # TODO(pbos): Move test disabling to ifdefs within the test files instead | |
642 # of here. | |
643 sources -= [ | |
kjellander_webrtc
2016/07/06 19:25:52
Please don't use subtracting source listings. Have
| |
644 "base/physicalsocketserver_unittest.cc", | |
645 "base/socket_unittest.cc", | |
646 "base/win32socketserver_unittest.cc", | |
647 ] | |
648 } | |
649 if (is_android) { | |
650 deps += [ "//testing/android/native_test:native_test_support" ] | |
651 } | |
652 | |
653 if (is_mac) { | |
654 sources += [ "base/macsocketserver_unittest.cc" ] | |
655 } | |
656 if (is_ios || (is_mac && target_cpu != "x86")) { | |
657 defines = [ "CARBON_DEPRECATED=YES" ] | |
658 } | |
659 if (is_clang) { | |
660 # Suppress warnings from the Chromium Clang plugin. | |
661 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | |
662 configs -= [ "//build/config/clang:find_bad_constructs" ] | |
663 } | |
664 } | |
615 } | 665 } |
OLD | NEW |