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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 "ssl/openssl_ssl_util.cc", | 282 "ssl/openssl_ssl_util.cc", |
283 "ssl/openssl_ssl_util.h", | 283 "ssl/openssl_ssl_util.h", |
284 ] | 284 ] |
285 if (is_mac) { | 285 if (is_mac) { |
286 sources -= [ | 286 sources -= [ |
287 "ssl/openssl_platform_key_mac.cc", | 287 "ssl/openssl_platform_key_mac.cc", |
288 ] | 288 ] |
289 } | 289 } |
290 if (is_win) { | 290 if (is_win) { |
291 sources -= [ | 291 sources -= [ |
| 292 "cert/sha256_legacy_support_openssl_win.cc", |
292 "ssl/openssl_platform_key_win.cc", | 293 "ssl/openssl_platform_key_win.cc", |
293 ] | 294 ] |
294 } | 295 } |
295 } | 296 } |
296 | 297 |
297 if (!use_openssl_certs) { | 298 if (!use_openssl_certs) { |
298 sources -= [ | 299 sources -= [ |
299 "base/keygen_handler_openssl.cc", | 300 "base/keygen_handler_openssl.cc", |
300 "base/openssl_private_key_store.h", | 301 "base/openssl_private_key_store.h", |
301 "base/openssl_private_key_store_memory.cc", | 302 "base/openssl_private_key_store_memory.cc", |
(...skipping 1083 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1385 sources = [ "quic/quic_server_bin.cc" ] | 1386 sources = [ "quic/quic_server_bin.cc" ] |
1386 deps = [ | 1387 deps = [ |
1387 ":quic_tools", | 1388 ":quic_tools", |
1388 ":net", | 1389 ":net", |
1389 "//base", | 1390 "//base", |
1390 "//third_party/boringssl", | 1391 "//third_party/boringssl", |
1391 ] | 1392 ] |
1392 } | 1393 } |
1393 | 1394 |
1394 } # !is_android | 1395 } # !is_android |
OLD | NEW |