Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1555)

Side by Side Diff: third_party/boringssl/boringssl_tests.gypi

Issue 1132243002: Revert of Roll src/third_party/boringssl/src 68de407:65a7e94 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Upload again with hack to unbreak Rietveld's dumb encoding bugs. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/boringssl/boringssl.gypi ('k') | third_party/boringssl/boringssl_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 generate_build_files.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',
11 'type': 'executable', 11 'type': 'executable',
12 'dependencies': [ 12 'dependencies': [
13 'boringssl.gyp:boringssl', 13 'boringssl.gyp:boringssl',
14 ], 14 ],
15 'sources': [ 15 'sources': [
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 'boringssl.gyp:boringssl', 78 'boringssl.gyp:boringssl',
79 ], 79 ],
80 'sources': [ 80 'sources': [
81 'src/crypto/cipher/cipher_test.c', 81 'src/crypto/cipher/cipher_test.c',
82 ], 82 ],
83 # TODO(davidben): Fix size_t truncations in BoringSSL. 83 # TODO(davidben): Fix size_t truncations in BoringSSL.
84 # https://crbug.com/429039 84 # https://crbug.com/429039
85 'msvs_disabled_warnings': [ 4267, ], 85 'msvs_disabled_warnings': [ 4267, ],
86 }, 86 },
87 { 87 {
88 'target_name': 'boringssl_cmac_test',
89 'type': 'executable',
90 'dependencies': [
91 'boringssl.gyp:boringssl',
92 ],
93 'sources': [
94 'src/crypto/cmac/cmac_test.cc',
95 ],
96 # TODO(davidben): Fix size_t truncations in BoringSSL.
97 # https://crbug.com/429039
98 'msvs_disabled_warnings': [ 4267, ],
99 },
100 {
101 'target_name': 'boringssl_constant_time_test', 88 'target_name': 'boringssl_constant_time_test',
102 'type': 'executable', 89 'type': 'executable',
103 'dependencies': [ 90 'dependencies': [
104 'boringssl.gyp:boringssl', 91 'boringssl.gyp:boringssl',
105 ], 92 ],
106 'sources': [ 93 'sources': [
107 'src/crypto/constant_time_test.c', 94 'src/crypto/constant_time_test.c',
108 ], 95 ],
109 # TODO(davidben): Fix size_t truncations in BoringSSL. 96 # TODO(davidben): Fix size_t truncations in BoringSSL.
110 # https://crbug.com/429039 97 # https://crbug.com/429039
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 }, 346 },
360 ], 347 ],
361 'variables': { 348 'variables': {
362 'boringssl_test_targets': [ 349 'boringssl_test_targets': [
363 'boringssl_aead_test', 350 'boringssl_aead_test',
364 'boringssl_base64_test', 351 'boringssl_base64_test',
365 'boringssl_bio_test', 352 'boringssl_bio_test',
366 'boringssl_bn_test', 353 'boringssl_bn_test',
367 'boringssl_bytestring_test', 354 'boringssl_bytestring_test',
368 'boringssl_cipher_test', 355 'boringssl_cipher_test',
369 'boringssl_cmac_test',
370 'boringssl_constant_time_test', 356 'boringssl_constant_time_test',
371 'boringssl_dh_test', 357 'boringssl_dh_test',
372 'boringssl_digest_test', 358 'boringssl_digest_test',
373 'boringssl_dsa_test', 359 'boringssl_dsa_test',
374 'boringssl_ec_test', 360 'boringssl_ec_test',
375 'boringssl_ecdsa_test', 361 'boringssl_ecdsa_test',
376 'boringssl_err_test', 362 'boringssl_err_test',
377 'boringssl_evp_test', 363 'boringssl_evp_test',
378 'boringssl_example_mul', 364 'boringssl_example_mul',
379 'boringssl_gcm_test', 365 'boringssl_gcm_test',
380 'boringssl_hkdf_test', 366 'boringssl_hkdf_test',
381 'boringssl_hmac_test', 367 'boringssl_hmac_test',
382 'boringssl_lhash_test', 368 'boringssl_lhash_test',
383 'boringssl_pbkdf_test', 369 'boringssl_pbkdf_test',
384 'boringssl_pkcs12_test', 370 'boringssl_pkcs12_test',
385 'boringssl_pkcs7_test', 371 'boringssl_pkcs7_test',
386 'boringssl_pqueue_test', 372 'boringssl_pqueue_test',
387 'boringssl_rsa_test', 373 'boringssl_rsa_test',
388 'boringssl_ssl_test', 374 'boringssl_ssl_test',
389 'boringssl_thread_test', 375 'boringssl_thread_test',
390 ], 376 ],
391 } 377 }
392 } 378 }
OLDNEW
« no previous file with comments | « third_party/boringssl/boringssl.gypi ('k') | third_party/boringssl/boringssl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698