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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 } | 244 } |
245 if (is_ios) { | 245 if (is_ios) { |
246 # Always removed for !ios below. | 246 # Always removed for !ios below. |
247 sources -= [ | 247 sources -= [ |
248 "cert/cert_verify_proc_nss.cc", | 248 "cert/cert_verify_proc_nss.cc", |
249 "cert/cert_verify_proc_nss.h", | 249 "cert/cert_verify_proc_nss.h", |
250 ] | 250 ] |
251 } | 251 } |
252 if (is_win) { | 252 if (is_win) { |
253 sources -= [ | 253 sources -= [ |
254 "cert/cert/sha256_legacy_support_nss_win.cc", | 254 "cert/sha256_legacy_support_nss_win.cc", |
255 ] | 255 ] |
256 } | 256 } |
257 } else { | 257 } else { |
258 sources -= [ | 258 sources -= [ |
259 "base/crypto_module_openssl.cc", | 259 "base/crypto_module_openssl.cc", |
260 "cert/ct_log_verifier_openssl.cc", | 260 "cert/ct_log_verifier_openssl.cc", |
261 "cert/ct_objects_extractor_openssl.cc", | 261 "cert/ct_objects_extractor_openssl.cc", |
262 "cert/jwk_serializer_openssl.cc", | 262 "cert/jwk_serializer_openssl.cc", |
263 "cert/x509_util_openssl.cc", | 263 "cert/x509_util_openssl.cc", |
264 "cert/x509_util_openssl.h", | 264 "cert/x509_util_openssl.h", |
(...skipping 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1372 sources = [ "quic/quic_server_bin.cc" ] | 1372 sources = [ "quic/quic_server_bin.cc" ] |
1373 deps = [ | 1373 deps = [ |
1374 ":quic_tools", | 1374 ":quic_tools", |
1375 ":net", | 1375 ":net", |
1376 "//base", | 1376 "//base", |
1377 "//third_party/boringssl", | 1377 "//third_party/boringssl", |
1378 ] | 1378 ] |
1379 } | 1379 } |
1380 | 1380 |
1381 } # !is_android && !is_win && !is_mac | 1381 } # !is_android && !is_win && !is_mac |
OLD | NEW |