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 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1079 # sense. | 1079 # sense. |
1080 "dns/dns_config_service_posix_unittest.cc", | 1080 "dns/dns_config_service_posix_unittest.cc", |
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 -= [ "ssl/client_cert_store_nss_unittest.cc" ] | 1089 sources -= [ |
1090 if (is_chromeos) { | 1090 "ssl/client_cert_store_nss_unittest.cc", |
1091 # Will have already have been removed in the ChromeOS case. | 1091 "ssl/client_cert_store_chromeos_unittest.cc", |
1092 sources -= [ "ssl/client_cert_store_chromeos_unittest.cc" ] | 1092 ] |
1093 } | |
1094 } | 1093 } |
1095 | 1094 |
1096 if (use_openssl) { | 1095 if (use_openssl) { |
1097 # When building for OpenSSL, we need to exclude NSS specific tests | 1096 # When building for OpenSSL, we need to exclude NSS specific tests |
1098 # or functionality not supported by OpenSSL yet. | 1097 # or functionality not supported by OpenSSL yet. |
1099 # TODO(bulach): Add equivalent tests when the underlying | 1098 # TODO(bulach): Add equivalent tests when the underlying |
1100 # functionality is ported to OpenSSL. | 1099 # functionality is ported to OpenSSL. |
1101 sources -= [ | 1100 sources -= [ |
1102 "cert/ct_objects_extractor_unittest.cc", | 1101 "cert/ct_objects_extractor_unittest.cc", |
1103 "cert/multi_log_ct_verifier_unittest.cc", | 1102 "cert/multi_log_ct_verifier_unittest.cc", |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1284 if (use_icu_alternatives_on_android) { | 1283 if (use_icu_alternatives_on_android) { |
1285 sources -= [ | 1284 sources -= [ |
1286 "base/filename_util_unittest.cc", | 1285 "base/filename_util_unittest.cc", |
1287 "base/net_util_icu_unittest.cc", | 1286 "base/net_util_icu_unittest.cc", |
1288 ] | 1287 ] |
1289 deps -= [ "//base:i18n" ] | 1288 deps -= [ "//base:i18n" ] |
1290 } | 1289 } |
1291 } | 1290 } |
1292 | 1291 |
1293 } # !is_android | 1292 } # !is_android |
OLD | NEW |