OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 1644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1655 "url_request/url_request_context_builder_unittest.cc", | 1655 "url_request/url_request_context_builder_unittest.cc", |
1656 | 1656 |
1657 # Needs GetAppOutput(). | 1657 # Needs GetAppOutput(). |
1658 "test/python_utils_unittest.cc", | 1658 "test/python_utils_unittest.cc", |
1659 | 1659 |
1660 # The following tests are disabled because they don't apply to | 1660 # The following tests are disabled because they don't apply to |
1661 # iOS. | 1661 # iOS. |
1662 # OS is not "linux" or "freebsd" or "openbsd". | 1662 # OS is not "linux" or "freebsd" or "openbsd". |
1663 "socket/unix_domain_client_socket_posix_unittest.cc", | 1663 "socket/unix_domain_client_socket_posix_unittest.cc", |
1664 "socket/unix_domain_server_socket_posix_unittest.cc", | 1664 "socket/unix_domain_server_socket_posix_unittest.cc", |
1665 | |
1666 # See bug http://crbug.com/344533. | |
1667 "disk_cache/blockfile/index_table_v3_unittest.cc", | |
1668 ] | 1665 ] |
1669 } | 1666 } |
1670 | 1667 |
1671 # Unit tests that aren't supported by the current ICU alternatives on Android. | 1668 # Unit tests that aren't supported by the current ICU alternatives on Android. |
1672 if (is_android && use_platform_icu_alternatives) { | 1669 if (is_android && use_platform_icu_alternatives) { |
1673 sources -= [ | 1670 sources -= [ |
1674 "base/filename_util_unittest.cc", | 1671 "base/filename_util_unittest.cc", |
1675 "base/url_util_unittest.cc", | 1672 "base/url_util_unittest.cc", |
1676 "cert/x509_certificate_unittest.cc", | 1673 "cert/x509_certificate_unittest.cc", |
1677 "proxy/proxy_resolver_v8_unittest.cc", | 1674 "proxy/proxy_resolver_v8_unittest.cc", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1714 "//net/android:net_java_test_support", | 1711 "//net/android:net_java_test_support", |
1715 "//net/android:net_javatests", | 1712 "//net/android:net_javatests", |
1716 "//net/android:net_unittests_apk_resources", | 1713 "//net/android:net_unittests_apk_resources", |
1717 | 1714 |
1718 # TODO(mmenke): This depends on test_support_base, which depends on | 1715 # TODO(mmenke): This depends on test_support_base, which depends on |
1719 # icu. Figure out a way to remove that dependency. | 1716 # icu. Figure out a way to remove that dependency. |
1720 "//testing/android/native_test:native_test_native_code", | 1717 "//testing/android/native_test:native_test_native_code", |
1721 "//v8:v8_external_startup_data_assets", | 1718 "//v8:v8_external_startup_data_assets", |
1722 ] | 1719 ] |
1723 android_manifest = "//net/android/unittest_support/AndroidManifest.xml" | 1720 android_manifest = "//net/android/unittest_support/AndroidManifest.xml" |
1724 sources -= [ | |
1725 # See bug http://crbug.com/344533. | |
1726 "disk_cache/blockfile/index_table_v3_unittest.cc", | |
1727 ] | |
1728 set_sources_assignment_filter([]) | 1721 set_sources_assignment_filter([]) |
1729 sources += [ "base/address_tracker_linux_unittest.cc" ] | 1722 sources += [ "base/address_tracker_linux_unittest.cc" ] |
1730 set_sources_assignment_filter(sources_assignment_filter) | 1723 set_sources_assignment_filter(sources_assignment_filter) |
1731 isolate_file = "net_unittests.isolate" | 1724 isolate_file = "net_unittests.isolate" |
1732 shard_timeout = 300 | 1725 shard_timeout = 300 |
1733 } | 1726 } |
1734 | 1727 |
1735 # Symbols for crashes when running tests on swarming. | 1728 # Symbols for crashes when running tests on swarming. |
1736 if (symbol_level > 0) { | 1729 if (symbol_level > 0) { |
1737 if (is_win) { | 1730 if (is_win) { |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2012 sources = [ | 2005 sources = [ |
2013 "socket/socks5_client_socket_fuzzer.cc", | 2006 "socket/socks5_client_socket_fuzzer.cc", |
2014 ] | 2007 ] |
2015 deps = [ | 2008 deps = [ |
2016 ":net_fuzzer_test_support", | 2009 ":net_fuzzer_test_support", |
2017 ":test_support", | 2010 ":test_support", |
2018 "//base", | 2011 "//base", |
2019 "//net", | 2012 "//net", |
2020 ] | 2013 ] |
2021 } | 2014 } |
OLD | NEW |