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("//url/config.gni") | 9 import("//url/config.gni") |
9 | 10 |
10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. | 11 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. |
11 # Currently, that file can't be imported multiple times. Make this always | 12 # Currently, that file can't be imported multiple times. Make this always |
12 # imported when http://crbug.com/393704 is fixed. | 13 # imported when http://crbug.com/393704 is fixed. |
13 if (!is_android) { | 14 if (!is_android) { |
14 import("//tools/grit/grit_rule.gni") | 15 import("//tools/grit/grit_rule.gni") |
15 } | 16 } |
16 | 17 |
17 if (is_android) { | 18 if (is_android) { |
(...skipping 1160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1178 # No res_ninit() et al on Android, so this doesn't make a lot of | 1179 # No res_ninit() et al on Android, so this doesn't make a lot of |
1179 # sense. | 1180 # sense. |
1180 "dns/dns_config_service_posix_unittest.cc", | 1181 "dns/dns_config_service_posix_unittest.cc", |
1181 ] | 1182 ] |
1182 deps += [ | 1183 deps += [ |
1183 ":net_javatests", # FIXME(brettw) | 1184 ":net_javatests", # FIXME(brettw) |
1184 ":net_test_jni_headers", | 1185 ":net_test_jni_headers", |
1185 ] | 1186 ] |
1186 } | 1187 } |
1187 | 1188 |
| 1189 if (v8_use_external_startup_data) { |
| 1190 deps += [ "//gin" ] |
| 1191 } |
| 1192 |
1188 if (!use_nss_certs) { | 1193 if (!use_nss_certs) { |
1189 sources -= [ "ssl/client_cert_store_nss_unittest.cc" ] | 1194 sources -= [ "ssl/client_cert_store_nss_unittest.cc" ] |
1190 if (is_chromeos) { # Already removed for all non-ChromeOS builds. | 1195 if (is_chromeos) { # Already removed for all non-ChromeOS builds. |
1191 sources -= [ "ssl/client_cert_store_chromeos_unittest.cc" ] | 1196 sources -= [ "ssl/client_cert_store_chromeos_unittest.cc" ] |
1192 } | 1197 } |
1193 } | 1198 } |
1194 | 1199 |
1195 if (use_openssl) { | 1200 if (use_openssl) { |
1196 # When building for OpenSSL, we need to exclude NSS specific tests | 1201 # When building for OpenSSL, we need to exclude NSS specific tests |
1197 # or functionality not supported by OpenSSL yet. | 1202 # or functionality not supported by OpenSSL yet. |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1398 "quic/quic_server_bin.cc", | 1403 "quic/quic_server_bin.cc", |
1399 ] | 1404 ] |
1400 deps = [ | 1405 deps = [ |
1401 ":quic_tools", | 1406 ":quic_tools", |
1402 ":net", | 1407 ":net", |
1403 "//base", | 1408 "//base", |
1404 "//third_party/boringssl", | 1409 "//third_party/boringssl", |
1405 ] | 1410 ] |
1406 } | 1411 } |
1407 } # !is_android && !is_win && !is_mac | 1412 } # !is_android && !is_win && !is_mac |
OLD | NEW |