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("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
9 import("//url/config.gni") | 9 import("//url/config.gni") |
10 | 10 |
(...skipping 1070 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1081 ] | 1081 ] |
1082 deps += [ | 1082 deps += [ |
1083 ":net_javatests", # FIXME(brettw) | 1083 ":net_javatests", # FIXME(brettw) |
1084 ":net_test_jni_headers", | 1084 ":net_test_jni_headers", |
1085 ] | 1085 ] |
1086 } | 1086 } |
1087 | 1087 |
1088 if (!use_nss_certs) { | 1088 if (!use_nss_certs) { |
1089 sources -= [ | 1089 sources -= [ |
1090 "ssl/client_cert_store_nss_unittest.cc", | 1090 "ssl/client_cert_store_nss_unittest.cc", |
1091 "ssl/client_cert_store_chromeos_unittest.cc", | |
1092 ] | 1091 ] |
| 1092 if (is_chromeos) { # Already removed for all non-ChromeOS builds. |
| 1093 sources -= [ |
| 1094 "ssl/client_cert_store_chromeos_unittest.cc", |
| 1095 ] |
| 1096 } |
1093 } | 1097 } |
1094 | 1098 |
1095 if (use_openssl) { | 1099 if (use_openssl) { |
1096 # When building for OpenSSL, we need to exclude NSS specific tests | 1100 # When building for OpenSSL, we need to exclude NSS specific tests |
1097 # or functionality not supported by OpenSSL yet. | 1101 # or functionality not supported by OpenSSL yet. |
1098 # TODO(bulach): Add equivalent tests when the underlying | 1102 # TODO(bulach): Add equivalent tests when the underlying |
1099 # functionality is ported to OpenSSL. | 1103 # functionality is ported to OpenSSL. |
1100 sources -= [ | 1104 sources -= [ |
1101 "cert/ct_objects_extractor_unittest.cc", | 1105 "cert/ct_objects_extractor_unittest.cc", |
1102 "cert/multi_log_ct_verifier_unittest.cc", | 1106 "cert/multi_log_ct_verifier_unittest.cc", |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1206 sources -= [ | 1210 sources -= [ |
1207 "proxy/proxy_resolver_v8_unittest.cc", | 1211 "proxy/proxy_resolver_v8_unittest.cc", |
1208 "proxy/proxy_resolver_v8_tracing_unittest.cc", | 1212 "proxy/proxy_resolver_v8_tracing_unittest.cc", |
1209 ] | 1213 ] |
1210 } | 1214 } |
1211 | 1215 |
1212 if (!enable_mdns) { | 1216 if (!enable_mdns) { |
1213 sources -= [ | 1217 sources -= [ |
1214 "dns/mdns_cache_unittest.cc", | 1218 "dns/mdns_cache_unittest.cc", |
1215 "dns/mdns_client_unittest.cc", | 1219 "dns/mdns_client_unittest.cc", |
1216 "dns/mdns_query_unittest.cc", | |
1217 "dns/record_parsed_unittest.cc", | 1220 "dns/record_parsed_unittest.cc", |
1218 "dns/record_rdata_unittest.cc", | 1221 "dns/record_rdata_unittest.cc", |
1219 ] | 1222 ] |
1220 } | 1223 } |
1221 | 1224 |
1222 if (is_ios) { | 1225 if (is_ios) { |
1223 # TODO(GYP) | 1226 # TODO(GYP) |
1224 # 'actions': [ | 1227 # 'actions': [ |
1225 # { | 1228 # { |
1226 # 'action_name': 'copy_test_data', | 1229 # 'action_name': 'copy_test_data', |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1283 if (use_icu_alternatives_on_android) { | 1286 if (use_icu_alternatives_on_android) { |
1284 sources -= [ | 1287 sources -= [ |
1285 "base/filename_util_unittest.cc", | 1288 "base/filename_util_unittest.cc", |
1286 "base/net_util_icu_unittest.cc", | 1289 "base/net_util_icu_unittest.cc", |
1287 ] | 1290 ] |
1288 deps -= [ "//base:i18n" ] | 1291 deps -= [ "//base:i18n" ] |
1289 } | 1292 } |
1290 } | 1293 } |
1291 | 1294 |
1292 } # !is_android | 1295 } # !is_android |
OLD | NEW |