Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Side by Side Diff: net/BUILD.gn

Issue 519473002: Implement ct_objects_extractor for OpenSSL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Another comment tweak (try jobs still on patch set 3) Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | net/cert/ct_objects_extractor_openssl.cc » ('j') | net/cert/ct_objects_extractor_openssl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698