| 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 1576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1587 ] | 1587 ] |
| 1588 } | 1588 } |
| 1589 | 1589 |
| 1590 # Exclude brotli test if the support for brotli is disabled. | 1590 # Exclude brotli test if the support for brotli is disabled. |
| 1591 # Also, exclude the test from iOS for now (needs to read input data files). | 1591 # Also, exclude the test from iOS for now (needs to read input data files). |
| 1592 if (disable_brotli_filter || is_ios) { | 1592 if (disable_brotli_filter || is_ios) { |
| 1593 sources -= [ "filter/brotli_filter_unittest.cc" ] | 1593 sources -= [ "filter/brotli_filter_unittest.cc" ] |
| 1594 } | 1594 } |
| 1595 | 1595 |
| 1596 if (is_android) { | 1596 if (is_android) { |
| 1597 data_deps += [ "//net/tools/testserver:testserver_py" ] |
| 1597 deps += [ | 1598 deps += [ |
| 1598 ":net_test_jni_headers", | 1599 ":net_test_jni_headers", |
| 1599 "//base:base_java_unittest_support", | 1600 "//base:base_java_unittest_support", |
| 1600 "//net/android:net_java", | 1601 "//net/android:net_java", |
| 1601 "//net/android:net_java_test_support", | 1602 "//net/android:net_java_test_support", |
| 1602 "//net/android:net_javatests", | 1603 "//net/android:net_javatests", |
| 1603 "//net/android:net_unittests_apk_resources", | 1604 "//net/android:net_unittests_apk_resources", |
| 1604 | 1605 |
| 1605 # TODO(mmenke): This depends on test_support_base, which depends on | 1606 # TODO(mmenke): This depends on test_support_base, which depends on |
| 1606 # icu. Figure out a way to remove that dependency. | 1607 # icu. Figure out a way to remove that dependency. |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1897 sources = [ | 1898 sources = [ |
| 1898 "socket/socks5_client_socket_fuzzer.cc", | 1899 "socket/socks5_client_socket_fuzzer.cc", |
| 1899 ] | 1900 ] |
| 1900 deps = [ | 1901 deps = [ |
| 1901 ":net_fuzzer_test_support", | 1902 ":net_fuzzer_test_support", |
| 1902 ":test_support", | 1903 ":test_support", |
| 1903 "//base", | 1904 "//base", |
| 1904 "//net", | 1905 "//net", |
| 1905 ] | 1906 ] |
| 1906 } | 1907 } |
| OLD | NEW |