| 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("//url/config.gni") | 8 import("//url/config.gni") |
| 9 | 9 |
| 10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. | 10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. |
| (...skipping 1143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1154 ] | 1154 ] |
| 1155 } | 1155 } |
| 1156 } | 1156 } |
| 1157 | 1157 |
| 1158 if (use_openssl) { | 1158 if (use_openssl) { |
| 1159 # When building for OpenSSL, we need to exclude NSS specific tests | 1159 # When building for OpenSSL, we need to exclude NSS specific tests |
| 1160 # or functionality not supported by OpenSSL yet. | 1160 # or functionality not supported by OpenSSL yet. |
| 1161 # TODO(bulach): Add equivalent tests when the underlying | 1161 # TODO(bulach): Add equivalent tests when the underlying |
| 1162 # functionality is ported to OpenSSL. | 1162 # functionality is ported to OpenSSL. |
| 1163 sources -= [ | 1163 sources -= [ |
| 1164 "cert/ct_objects_extractor_unittest.cc", | |
| 1165 "cert/multi_log_ct_verifier_unittest.cc", | |
| 1166 "cert/nss_cert_database_unittest.cc", | 1164 "cert/nss_cert_database_unittest.cc", |
| 1167 "cert/nss_cert_database_chromeos_unittest.cc", | 1165 "cert/nss_cert_database_chromeos_unittest.cc", |
| 1168 "cert/nss_profile_filter_chromeos_unittest.cc", | 1166 "cert/nss_profile_filter_chromeos_unittest.cc", |
| 1169 "cert/x509_util_nss_unittest.cc", | 1167 "cert/x509_util_nss_unittest.cc", |
| 1170 "quic/test_tools/crypto_test_utils_nss.cc", | 1168 "quic/test_tools/crypto_test_utils_nss.cc", |
| 1171 ] | 1169 ] |
| 1172 } else { | 1170 } else { |
| 1173 sources -= [ | 1171 sources -= [ |
| 1174 "cert/x509_util_openssl_unittest.cc", | 1172 "cert/x509_util_openssl_unittest.cc", |
| 1175 "quic/test_tools/crypto_test_utils_openssl.cc", | 1173 "quic/test_tools/crypto_test_utils_openssl.cc", |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1357 sources = [ "quic/quic_server_bin.cc" ] | 1355 sources = [ "quic/quic_server_bin.cc" ] |
| 1358 deps = [ | 1356 deps = [ |
| 1359 ":quic_tools", | 1357 ":quic_tools", |
| 1360 ":net", | 1358 ":net", |
| 1361 "//base", | 1359 "//base", |
| 1362 "//third_party/boringssl", | 1360 "//third_party/boringssl", |
| 1363 ] | 1361 ] |
| 1364 } | 1362 } |
| 1365 | 1363 |
| 1366 } # !is_android | 1364 } # !is_android |
| OLD | NEW |