OLD | NEW |
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2014 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 # This file is created by update_gypi_and_asm.py. Do not edit manually. | 5 # This file is created by update_gypi_and_asm.py. Do not edit manually. |
6 | 6 |
7 { | 7 { |
8 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 'target_name': 'boringssl_base64_test', | 10 'target_name': 'boringssl_base64_test', |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 'target_name': 'boringssl_gcm_test', | 160 'target_name': 'boringssl_gcm_test', |
161 'type': 'executable', | 161 'type': 'executable', |
162 'dependencies': [ | 162 'dependencies': [ |
163 'boringssl.gyp:boringssl', | 163 'boringssl.gyp:boringssl', |
164 ], | 164 ], |
165 'sources': [ | 165 'sources': [ |
166 'src/crypto/modes/gcm_test.c', | 166 'src/crypto/modes/gcm_test.c', |
167 ], | 167 ], |
168 }, | 168 }, |
169 { | 169 { |
| 170 'target_name': 'boringssl_pkcs12_test', |
| 171 'type': 'executable', |
| 172 'dependencies': [ |
| 173 'boringssl.gyp:boringssl', |
| 174 ], |
| 175 'sources': [ |
| 176 'src/crypto/pkcs8/pkcs12_test.c', |
| 177 ], |
| 178 }, |
| 179 { |
170 'target_name': 'boringssl_rsa_test', | 180 'target_name': 'boringssl_rsa_test', |
171 'type': 'executable', | 181 'type': 'executable', |
172 'dependencies': [ | 182 'dependencies': [ |
173 'boringssl.gyp:boringssl', | 183 'boringssl.gyp:boringssl', |
174 ], | 184 ], |
175 'sources': [ | 185 'sources': [ |
176 'src/crypto/rsa/rsa_test.c', | 186 'src/crypto/rsa/rsa_test.c', |
177 ], | 187 ], |
178 }, | 188 }, |
179 { | 189 { |
(...skipping 28 matching lines...) Expand all Loading... |
208 'boringssl_dh_test', | 218 'boringssl_dh_test', |
209 'boringssl_dsa_test', | 219 'boringssl_dsa_test', |
210 'boringssl_ecdsa_test', | 220 'boringssl_ecdsa_test', |
211 'boringssl_err_test', | 221 'boringssl_err_test', |
212 'boringssl_example_mul', | 222 'boringssl_example_mul', |
213 'boringssl_example_sign', | 223 'boringssl_example_sign', |
214 'boringssl_gcm_test', | 224 'boringssl_gcm_test', |
215 'boringssl_hmac_test', | 225 'boringssl_hmac_test', |
216 'boringssl_lhash_test', | 226 'boringssl_lhash_test', |
217 'boringssl_md5_test', | 227 'boringssl_md5_test', |
| 228 'boringssl_pkcs12_test', |
218 'boringssl_pkcs7_test', | 229 'boringssl_pkcs7_test', |
219 'boringssl_rsa_test', | 230 'boringssl_rsa_test', |
220 'boringssl_sha1_test', | 231 'boringssl_sha1_test', |
221 ], | 232 ], |
222 } | 233 } |
223 } | 234 } |
OLD | NEW |