| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 'third_party/nss/chromium-nss.h', | 121 'third_party/nss/chromium-nss.h', |
| 122 'third_party/nss/chromium-prtypes.h', | 122 'third_party/nss/chromium-prtypes.h', |
| 123 'third_party/nss/chromium-sha256.h', | 123 'third_party/nss/chromium-sha256.h', |
| 124 'third_party/nss/pk11akey.cc', | 124 'third_party/nss/pk11akey.cc', |
| 125 'third_party/nss/rsawrapr.c', | 125 'third_party/nss/rsawrapr.c', |
| 126 'third_party/nss/secsign.cc', | 126 'third_party/nss/secsign.cc', |
| 127 'third_party/nss/sha512.cc', | 127 'third_party/nss/sha512.cc', |
| 128 ], | 128 ], |
| 129 }, { | 129 }, { |
| 130 'sources!': [ | 130 'sources!': [ |
| 131 'aead_openssl.cc', |
| 132 'aead_openssl.h', |
| 131 'ec_private_key_openssl.cc', | 133 'ec_private_key_openssl.cc', |
| 132 'ec_signature_creator_openssl.cc', | 134 'ec_signature_creator_openssl.cc', |
| 133 'encryptor_openssl.cc', | 135 'encryptor_openssl.cc', |
| 134 'hmac_openssl.cc', | 136 'hmac_openssl.cc', |
| 135 'openssl_bio_string.cc', | 137 'openssl_bio_string.cc', |
| 136 'openssl_bio_string.h', | 138 'openssl_bio_string.h', |
| 137 'openssl_util.cc', | 139 'openssl_util.cc', |
| 138 'openssl_util.h', | 140 'openssl_util.h', |
| 139 'rsa_private_key_openssl.cc', | 141 'rsa_private_key_openssl.cc', |
| 140 'secure_hash_openssl.cc', | 142 'secure_hash_openssl.cc', |
| 141 'signature_creator_openssl.cc', | 143 'signature_creator_openssl.cc', |
| 142 'signature_verifier_openssl.cc', | 144 'signature_verifier_openssl.cc', |
| 143 'symmetric_key_openssl.cc', | 145 'symmetric_key_openssl.cc', |
| 144 ], | 146 ], |
| 145 },], | 147 },], |
| 146 ], | 148 ], |
| 147 'sources': [ | 149 'sources': [ |
| 148 '<@(crypto_sources)', | 150 '<@(crypto_sources)', |
| 149 ], | 151 ], |
| 150 }, | 152 }, |
| 151 { | 153 { |
| 152 'target_name': 'crypto_unittests', | 154 'target_name': 'crypto_unittests', |
| 153 'type': 'executable', | 155 'type': 'executable', |
| 154 'sources': [ | 156 'sources': [ |
| 157 'aead_openssl_unittest.cc', |
| 155 'curve25519_unittest.cc', | 158 'curve25519_unittest.cc', |
| 156 'ec_private_key_unittest.cc', | 159 'ec_private_key_unittest.cc', |
| 157 'ec_signature_creator_unittest.cc', | 160 'ec_signature_creator_unittest.cc', |
| 158 'encryptor_unittest.cc', | 161 'encryptor_unittest.cc', |
| 159 'ghash_unittest.cc', | 162 'ghash_unittest.cc', |
| 160 'hkdf_unittest.cc', | 163 'hkdf_unittest.cc', |
| 161 'hmac_unittest.cc', | 164 'hmac_unittest.cc', |
| 162 'nss_util_unittest.cc', | 165 'nss_util_unittest.cc', |
| 163 'openssl_bio_string_unittest.cc', | 166 'openssl_bio_string_unittest.cc', |
| 164 'p224_unittest.cc', | 167 'p224_unittest.cc', |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 '../build/isolate.gypi', | 312 '../build/isolate.gypi', |
| 310 ], | 313 ], |
| 311 'sources': [ | 314 'sources': [ |
| 312 'crypto_unittests.isolate', | 315 'crypto_unittests.isolate', |
| 313 ], | 316 ], |
| 314 }, | 317 }, |
| 315 ], | 318 ], |
| 316 }], | 319 }], |
| 317 ], | 320 ], |
| 318 } | 321 } |
| OLD | NEW |