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/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//build/module_args/v8.gni") | 8 import("//build/module_args/v8.gni") |
9 import("//url/config.gni") | 9 import("//url/config.gni") |
10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 1335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1346 if (is_android) { | 1346 if (is_android) { |
1347 sources -= [ | 1347 sources -= [ |
1348 # See bug http://crbug.com/344533. | 1348 # See bug http://crbug.com/344533. |
1349 "disk_cache/blockfile/index_table_v3_unittest.cc", | 1349 "disk_cache/blockfile/index_table_v3_unittest.cc", |
1350 | 1350 |
1351 # No res_ninit() et al on Android, so this doesn't make a lot of | 1351 # No res_ninit() et al on Android, so this doesn't make a lot of |
1352 # sense. | 1352 # sense. |
1353 "dns/dns_config_service_posix_unittest.cc", | 1353 "dns/dns_config_service_posix_unittest.cc", |
1354 ] | 1354 ] |
1355 deps += [ ":net_test_jni_headers" ] | 1355 deps += [ ":net_test_jni_headers" ] |
| 1356 isolate_file = "net_unittests.isolate" |
1356 } | 1357 } |
1357 | 1358 |
1358 if (v8_use_external_startup_data) { | 1359 if (v8_use_external_startup_data) { |
1359 deps += [ "//gin" ] | 1360 deps += [ "//gin" ] |
1360 } | 1361 } |
1361 | 1362 |
1362 if (!use_nss_certs) { | 1363 if (!use_nss_certs) { |
1363 sources -= [ | 1364 sources -= [ |
1364 "cert/nss_cert_database_unittest.cc", | 1365 "cert/nss_cert_database_unittest.cc", |
1365 "ssl/client_cert_store_nss_unittest.cc", | 1366 "ssl/client_cert_store_nss_unittest.cc", |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1618 } else { | 1619 } else { |
1619 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1620 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
1620 } | 1621 } |
1621 | 1622 |
1622 if (is_win && icu_use_data_file) { | 1623 if (is_win && icu_use_data_file) { |
1623 # This is needed to trigger the dll copy step on windows. | 1624 # This is needed to trigger the dll copy step on windows. |
1624 # TODO(mark): Specifying this here shouldn't be necessary. | 1625 # TODO(mark): Specifying this here shouldn't be necessary. |
1625 deps += [ "//third_party/icu:icudata" ] | 1626 deps += [ "//third_party/icu:icudata" ] |
1626 } | 1627 } |
1627 } | 1628 } |
OLD | NEW |