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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 { | 199 { |
200 'target_name': 'boringssl_pkcs7_test', | 200 'target_name': 'boringssl_pkcs7_test', |
201 'type': 'executable', | 201 'type': 'executable', |
202 'dependencies': [ | 202 'dependencies': [ |
203 'boringssl.gyp:boringssl', | 203 'boringssl.gyp:boringssl', |
204 ], | 204 ], |
205 'sources': [ | 205 'sources': [ |
206 'src/crypto/x509/pkcs7_test.c', | 206 'src/crypto/x509/pkcs7_test.c', |
207 ], | 207 ], |
208 }, | 208 }, |
| 209 { |
| 210 'target_name': 'boringssl_pqueue_test', |
| 211 'type': 'executable', |
| 212 'dependencies': [ |
| 213 'boringssl.gyp:boringssl', |
| 214 ], |
| 215 'sources': [ |
| 216 'src/ssl/pqueue/pqueue_test.c', |
| 217 ], |
| 218 }, |
| 219 { |
| 220 'target_name': 'boringssl_ssl_test', |
| 221 'type': 'executable', |
| 222 'dependencies': [ |
| 223 'boringssl.gyp:boringssl', |
| 224 ], |
| 225 'sources': [ |
| 226 'src/ssl/ssl_test.c', |
| 227 ], |
| 228 }, |
209 ], | 229 ], |
210 'variables': { | 230 'variables': { |
211 'boringssl_test_targets': [ | 231 'boringssl_test_targets': [ |
212 'boringssl_aead_test', | 232 'boringssl_aead_test', |
213 'boringssl_base64_test', | 233 'boringssl_base64_test', |
214 'boringssl_bio_test', | 234 'boringssl_bio_test', |
215 'boringssl_bn_test', | 235 'boringssl_bn_test', |
216 'boringssl_bytestring_test', | 236 'boringssl_bytestring_test', |
217 'boringssl_cipher_test', | 237 'boringssl_cipher_test', |
218 'boringssl_dh_test', | 238 'boringssl_dh_test', |
219 'boringssl_dsa_test', | 239 'boringssl_dsa_test', |
220 'boringssl_ecdsa_test', | 240 'boringssl_ecdsa_test', |
221 'boringssl_err_test', | 241 'boringssl_err_test', |
222 'boringssl_example_mul', | 242 'boringssl_example_mul', |
223 'boringssl_example_sign', | 243 'boringssl_example_sign', |
224 'boringssl_gcm_test', | 244 'boringssl_gcm_test', |
225 'boringssl_hmac_test', | 245 'boringssl_hmac_test', |
226 'boringssl_lhash_test', | 246 'boringssl_lhash_test', |
227 'boringssl_md5_test', | 247 'boringssl_md5_test', |
228 'boringssl_pkcs12_test', | 248 'boringssl_pkcs12_test', |
229 'boringssl_pkcs7_test', | 249 'boringssl_pkcs7_test', |
| 250 'boringssl_pqueue_test', |
230 'boringssl_rsa_test', | 251 'boringssl_rsa_test', |
231 'boringssl_sha1_test', | 252 'boringssl_sha1_test', |
| 253 'boringssl_ssl_test', |
232 ], | 254 ], |
233 } | 255 } |
234 } | 256 } |
OLD | NEW |