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 1167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1185 # No res_ninit() et al on Android, so this doesn't make a lot of | 1186 # No res_ninit() et al on Android, so this doesn't make a lot of |
1186 # sense. | 1187 # sense. |
1187 "dns/dns_config_service_posix_unittest.cc", | 1188 "dns/dns_config_service_posix_unittest.cc", |
1188 ] | 1189 ] |
1189 deps += [ | 1190 deps += [ |
1190 ":net_javatests", # FIXME(brettw) | 1191 ":net_javatests", # FIXME(brettw) |
1191 ":net_test_jni_headers", | 1192 ":net_test_jni_headers", |
1192 ] | 1193 ] |
1193 } | 1194 } |
1194 | 1195 |
| 1196 if (v8_use_external_startup_data) { |
| 1197 deps += [ "//gin" ] |
| 1198 } |
| 1199 |
1195 if (!use_nss_certs) { | 1200 if (!use_nss_certs) { |
1196 sources -= [ "ssl/client_cert_store_nss_unittest.cc" ] | 1201 sources -= [ "ssl/client_cert_store_nss_unittest.cc" ] |
1197 if (is_chromeos) { # Already removed for all non-ChromeOS builds. | 1202 if (is_chromeos) { # Already removed for all non-ChromeOS builds. |
1198 sources -= [ "ssl/client_cert_store_chromeos_unittest.cc" ] | 1203 sources -= [ "ssl/client_cert_store_chromeos_unittest.cc" ] |
1199 } | 1204 } |
1200 } | 1205 } |
1201 | 1206 |
1202 if (use_openssl) { | 1207 if (use_openssl) { |
1203 # When building for OpenSSL, we need to exclude NSS specific tests | 1208 # When building for OpenSSL, we need to exclude NSS specific tests |
1204 # or functionality not supported by OpenSSL yet. | 1209 # or functionality not supported by OpenSSL yet. |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1405 "quic/quic_server_bin.cc", | 1410 "quic/quic_server_bin.cc", |
1406 ] | 1411 ] |
1407 deps = [ | 1412 deps = [ |
1408 ":quic_tools", | 1413 ":quic_tools", |
1409 ":net", | 1414 ":net", |
1410 "//base", | 1415 "//base", |
1411 "//third_party/boringssl", | 1416 "//third_party/boringssl", |
1412 ] | 1417 ] |
1413 } | 1418 } |
1414 } # !is_android && !is_win && !is_mac | 1419 } # !is_android && !is_win && !is_mac |
OLD | NEW |