| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 'boringssl.gyp:boringssl', | 143 'boringssl.gyp:boringssl', |
| 144 ], | 144 ], |
| 145 'sources': [ | 145 'sources': [ |
| 146 'src/crypto/err/err_test.c', | 146 'src/crypto/err/err_test.c', |
| 147 ], | 147 ], |
| 148 # TODO(davidben): Fix size_t truncations in BoringSSL. | 148 # TODO(davidben): Fix size_t truncations in BoringSSL. |
| 149 # https://crbug.com/429039 | 149 # https://crbug.com/429039 |
| 150 'msvs_disabled_warnings': [ 4267, ], | 150 'msvs_disabled_warnings': [ 4267, ], |
| 151 }, | 151 }, |
| 152 { | 152 { |
| 153 'target_name': 'boringssl_example_sign', | 153 'target_name': 'boringssl_evp_test', |
| 154 'type': 'executable', | 154 'type': 'executable', |
| 155 'dependencies': [ | 155 'dependencies': [ |
| 156 'boringssl.gyp:boringssl', | 156 'boringssl.gyp:boringssl', |
| 157 ], | 157 ], |
| 158 'sources': [ | 158 'sources': [ |
| 159 'src/crypto/evp/example_sign.c', | 159 'src/crypto/evp/evp_test.c', |
| 160 ], | 160 ], |
| 161 # TODO(davidben): Fix size_t truncations in BoringSSL. | 161 # TODO(davidben): Fix size_t truncations in BoringSSL. |
| 162 # https://crbug.com/429039 | 162 # https://crbug.com/429039 |
| 163 'msvs_disabled_warnings': [ 4267, ], | 163 'msvs_disabled_warnings': [ 4267, ], |
| 164 }, | 164 }, |
| 165 { | 165 { |
| 166 'target_name': 'boringssl_hmac_test', | 166 'target_name': 'boringssl_hmac_test', |
| 167 'type': 'executable', | 167 'type': 'executable', |
| 168 'dependencies': [ | 168 'dependencies': [ |
| 169 'boringssl.gyp:boringssl', | 169 'boringssl.gyp:boringssl', |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 'boringssl_aead_test', | 298 'boringssl_aead_test', |
| 299 'boringssl_base64_test', | 299 'boringssl_base64_test', |
| 300 'boringssl_bio_test', | 300 'boringssl_bio_test', |
| 301 'boringssl_bn_test', | 301 'boringssl_bn_test', |
| 302 'boringssl_bytestring_test', | 302 'boringssl_bytestring_test', |
| 303 'boringssl_cipher_test', | 303 'boringssl_cipher_test', |
| 304 'boringssl_dh_test', | 304 'boringssl_dh_test', |
| 305 'boringssl_dsa_test', | 305 'boringssl_dsa_test', |
| 306 'boringssl_ecdsa_test', | 306 'boringssl_ecdsa_test', |
| 307 'boringssl_err_test', | 307 'boringssl_err_test', |
| 308 'boringssl_evp_test', |
| 308 'boringssl_example_mul', | 309 'boringssl_example_mul', |
| 309 'boringssl_example_sign', | |
| 310 'boringssl_gcm_test', | 310 'boringssl_gcm_test', |
| 311 'boringssl_hmac_test', | 311 'boringssl_hmac_test', |
| 312 'boringssl_lhash_test', | 312 'boringssl_lhash_test', |
| 313 'boringssl_md5_test', | 313 'boringssl_md5_test', |
| 314 'boringssl_pkcs12_test', | 314 'boringssl_pkcs12_test', |
| 315 'boringssl_pkcs7_test', | 315 'boringssl_pkcs7_test', |
| 316 'boringssl_pqueue_test', | 316 'boringssl_pqueue_test', |
| 317 'boringssl_rsa_test', | 317 'boringssl_rsa_test', |
| 318 'boringssl_sha1_test', | 318 'boringssl_sha1_test', |
| 319 'boringssl_ssl_test', | 319 'boringssl_ssl_test', |
| 320 ], | 320 ], |
| 321 } | 321 } |
| 322 } | 322 } |
| OLD | NEW |