| 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("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("crypto") { | 8 component("crypto") { |
| 9 output_name = "crcrypto" # Avoid colliding with OpenSSL's libcrypto. | 9 output_name = "crcrypto" # Avoid colliding with OpenSSL's libcrypto. |
| 10 sources = [ | 10 sources = [ |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 "openssl_bio_string.cc", | 58 "openssl_bio_string.cc", |
| 59 "openssl_bio_string.h", | 59 "openssl_bio_string.h", |
| 60 "openssl_util.cc", | 60 "openssl_util.cc", |
| 61 "openssl_util.h", | 61 "openssl_util.h", |
| 62 "p224.cc", | 62 "p224.cc", |
| 63 "p224.h", | 63 "p224.h", |
| 64 "p224_spake.cc", | 64 "p224_spake.cc", |
| 65 "p224_spake.h", | 65 "p224_spake.h", |
| 66 "random.cc", | 66 "random.cc", |
| 67 "random.h", | 67 "random.h", |
| 68 "rsa_private_key.cc", | |
| 69 "rsa_private_key.h", | 68 "rsa_private_key.h", |
| 70 "rsa_private_key_nss.cc", | 69 "rsa_private_key_nss.cc", |
| 71 "rsa_private_key_openssl.cc", | 70 "rsa_private_key_openssl.cc", |
| 72 "scoped_capi_types.h", | 71 "scoped_capi_types.h", |
| 73 "scoped_nss_types.h", | 72 "scoped_nss_types.h", |
| 74 "secure_hash.h", | 73 "secure_hash.h", |
| 75 "secure_hash_default.cc", | 74 "secure_hash_default.cc", |
| 76 "secure_hash_openssl.cc", | 75 "secure_hash_openssl.cc", |
| 77 "secure_util.cc", | 76 "secure_util.cc", |
| 78 "secure_util.h", | 77 "secure_util.h", |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 public_configs += [ "//third_party/nss:system_nss_no_ssl_config" ] | 353 public_configs += [ "//third_party/nss:system_nss_no_ssl_config" ] |
| 355 } else { | 354 } else { |
| 356 # Non-Linux platforms use the hermetic NSS from the tree. | 355 # Non-Linux platforms use the hermetic NSS from the tree. |
| 357 public_deps += [ | 356 public_deps += [ |
| 358 "//third_party/nss:nspr", | 357 "//third_party/nss:nspr", |
| 359 "//third_party/nss:nss", | 358 "//third_party/nss:nss", |
| 360 ] | 359 ] |
| 361 } | 360 } |
| 362 } | 361 } |
| 363 } | 362 } |
| OLD | NEW |