| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 'crypto.gypi', | 10 'crypto.gypi', |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 'third_party/nss/chromium-nss.h', | 118 'third_party/nss/chromium-nss.h', |
| 119 'third_party/nss/chromium-prtypes.h', | 119 'third_party/nss/chromium-prtypes.h', |
| 120 'third_party/nss/chromium-sha256.h', | 120 'third_party/nss/chromium-sha256.h', |
| 121 'third_party/nss/pk11akey.cc', | 121 'third_party/nss/pk11akey.cc', |
| 122 'third_party/nss/rsawrapr.c', | 122 'third_party/nss/rsawrapr.c', |
| 123 'third_party/nss/secsign.cc', | 123 'third_party/nss/secsign.cc', |
| 124 'third_party/nss/sha512.cc', | 124 'third_party/nss/sha512.cc', |
| 125 ], | 125 ], |
| 126 }, { | 126 }, { |
| 127 'sources!': [ | 127 'sources!': [ |
| 128 'aead_openssl.cc', | |
| 129 'aead_openssl.h', | |
| 130 'ec_private_key_openssl.cc', | 128 'ec_private_key_openssl.cc', |
| 131 'ec_signature_creator_openssl.cc', | 129 'ec_signature_creator_openssl.cc', |
| 132 'encryptor_openssl.cc', | 130 'encryptor_openssl.cc', |
| 133 'hmac_openssl.cc', | 131 'hmac_openssl.cc', |
| 134 'openssl_bio_string.cc', | 132 'openssl_bio_string.cc', |
| 135 'openssl_bio_string.h', | 133 'openssl_bio_string.h', |
| 136 'openssl_util.cc', | 134 'openssl_util.cc', |
| 137 'openssl_util.h', | 135 'openssl_util.h', |
| 138 'rsa_private_key_openssl.cc', | 136 'rsa_private_key_openssl.cc', |
| 139 'secure_hash_openssl.cc', | 137 'secure_hash_openssl.cc', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 153 },], | 151 },], |
| 154 ], | 152 ], |
| 155 'sources': [ | 153 'sources': [ |
| 156 '<@(crypto_sources)', | 154 '<@(crypto_sources)', |
| 157 ], | 155 ], |
| 158 }, | 156 }, |
| 159 { | 157 { |
| 160 'target_name': 'crypto_unittests', | 158 'target_name': 'crypto_unittests', |
| 161 'type': 'executable', | 159 'type': 'executable', |
| 162 'sources': [ | 160 'sources': [ |
| 163 'aead_openssl_unittest.cc', | |
| 164 'curve25519_unittest.cc', | 161 'curve25519_unittest.cc', |
| 165 'ec_private_key_unittest.cc', | 162 'ec_private_key_unittest.cc', |
| 166 'ec_signature_creator_unittest.cc', | 163 'ec_signature_creator_unittest.cc', |
| 167 'encryptor_unittest.cc', | 164 'encryptor_unittest.cc', |
| 168 'ghash_unittest.cc', | 165 'ghash_unittest.cc', |
| 169 'hkdf_unittest.cc', | 166 'hkdf_unittest.cc', |
| 170 'hmac_unittest.cc', | 167 'hmac_unittest.cc', |
| 171 'nss_util_unittest.cc', | 168 'nss_util_unittest.cc', |
| 172 'openssl_bio_string_unittest.cc', | 169 'openssl_bio_string_unittest.cc', |
| 173 'p224_unittest.cc', | 170 'p224_unittest.cc', |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 '../build/isolate.gypi', | 317 '../build/isolate.gypi', |
| 321 ], | 318 ], |
| 322 'sources': [ | 319 'sources': [ |
| 323 'crypto_unittests.isolate', | 320 'crypto_unittests.isolate', |
| 324 ], | 321 ], |
| 325 }, | 322 }, |
| 326 ], | 323 ], |
| 327 }], | 324 }], |
| 328 ], | 325 ], |
| 329 } | 326 } |
| OLD | NEW |