| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 },], | 100 },], |
| 101 ], | 101 ], |
| 102 'sources': [ | 102 'sources': [ |
| 103 '<@(crypto_sources)', | 103 '<@(crypto_sources)', |
| 104 ], | 104 ], |
| 105 }, | 105 }, |
| 106 { | 106 { |
| 107 'target_name': 'crypto_unittests', | 107 'target_name': 'crypto_unittests', |
| 108 'type': 'executable', | 108 'type': 'executable', |
| 109 'sources': [ | 109 'sources': [ |
| 110 'aead_openssl_unittest.cc', | 110 'aead_unittest.cc', |
| 111 'curve25519_unittest.cc', | 111 'curve25519_unittest.cc', |
| 112 'ec_private_key_unittest.cc', | 112 'ec_private_key_unittest.cc', |
| 113 'ec_signature_creator_unittest.cc', | 113 'ec_signature_creator_unittest.cc', |
| 114 'encryptor_unittest.cc', | 114 'encryptor_unittest.cc', |
| 115 'hkdf_unittest.cc', | 115 'hkdf_unittest.cc', |
| 116 'hmac_unittest.cc', | 116 'hmac_unittest.cc', |
| 117 'nss_key_util_unittest.cc', | 117 'nss_key_util_unittest.cc', |
| 118 'nss_util_unittest.cc', | 118 'nss_util_unittest.cc', |
| 119 'openssl_bio_string_unittest.cc', | 119 'openssl_bio_string_unittest.cc', |
| 120 'p224_unittest.cc', | 120 'p224_unittest.cc', |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 '../build/isolate.gypi', | 237 '../build/isolate.gypi', |
| 238 ], | 238 ], |
| 239 'sources': [ | 239 'sources': [ |
| 240 'crypto_unittests.isolate', | 240 'crypto_unittests.isolate', |
| 241 ], | 241 ], |
| 242 }, | 242 }, |
| 243 ], | 243 ], |
| 244 }], | 244 }], |
| 245 ], | 245 ], |
| 246 } | 246 } |
| OLD | NEW |