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

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

Issue 1459783002: Roll src/third_party/boringssl/src d7421ebf6..3ac32b1ed (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
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 generate_build_files.py. Do not edit manually.
6 6
7 { 7 {
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'boringssl_aes_test', 10 'target_name': 'boringssl_aes_test',
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 ], 126 ],
127 'sources': [ 127 'sources': [
128 'src/crypto/constant_time_test.c', 128 'src/crypto/constant_time_test.c',
129 '<@(boringssl_test_support_sources)', 129 '<@(boringssl_test_support_sources)',
130 ], 130 ],
131 # TODO(davidben): Fix size_t truncations in BoringSSL. 131 # TODO(davidben): Fix size_t truncations in BoringSSL.
132 # https://crbug.com/429039 132 # https://crbug.com/429039
133 'msvs_disabled_warnings': [ 4267, ], 133 'msvs_disabled_warnings': [ 4267, ],
134 }, 134 },
135 { 135 {
136 'target_name': 'boringssl_ed25519_test',
137 'type': 'executable',
138 'dependencies': [
139 'boringssl.gyp:boringssl',
140 ],
141 'sources': [
142 'src/crypto/curve25519/ed25519_test.cc',
143 '<@(boringssl_test_support_sources)',
144 ],
145 # TODO(davidben): Fix size_t truncations in BoringSSL.
146 # https://crbug.com/429039
147 'msvs_disabled_warnings': [ 4267, ],
148 },
149 {
150 'target_name': 'boringssl_x25519_test',
151 'type': 'executable',
152 'dependencies': [
153 'boringssl.gyp:boringssl',
154 ],
155 'sources': [
156 'src/crypto/curve25519/x25519_test.cc',
157 '<@(boringssl_test_support_sources)',
158 ],
159 # TODO(davidben): Fix size_t truncations in BoringSSL.
160 # https://crbug.com/429039
161 'msvs_disabled_warnings': [ 4267, ],
162 },
163 {
136 'target_name': 'boringssl_dh_test', 164 'target_name': 'boringssl_dh_test',
137 'type': 'executable', 165 'type': 'executable',
138 'dependencies': [ 166 'dependencies': [
139 'boringssl.gyp:boringssl', 167 'boringssl.gyp:boringssl',
140 ], 168 ],
141 'sources': [ 169 'sources': [
142 'src/crypto/dh/dh_test.cc', 170 'src/crypto/dh/dh_test.cc',
143 '<@(boringssl_test_support_sources)', 171 '<@(boringssl_test_support_sources)',
144 ], 172 ],
145 # TODO(davidben): Fix size_t truncations in BoringSSL. 173 # TODO(davidben): Fix size_t truncations in BoringSSL.
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 'boringssl_bn_test', 525 'boringssl_bn_test',
498 'boringssl_bytestring_test', 526 'boringssl_bytestring_test',
499 'boringssl_cipher_test', 527 'boringssl_cipher_test',
500 'boringssl_cmac_test', 528 'boringssl_cmac_test',
501 'boringssl_constant_time_test', 529 'boringssl_constant_time_test',
502 'boringssl_dh_test', 530 'boringssl_dh_test',
503 'boringssl_digest_test', 531 'boringssl_digest_test',
504 'boringssl_dsa_test', 532 'boringssl_dsa_test',
505 'boringssl_ec_test', 533 'boringssl_ec_test',
506 'boringssl_ecdsa_test', 534 'boringssl_ecdsa_test',
535 'boringssl_ed25519_test',
507 'boringssl_err_test', 536 'boringssl_err_test',
508 'boringssl_evp_extra_test', 537 'boringssl_evp_extra_test',
509 'boringssl_evp_test', 538 'boringssl_evp_test',
510 'boringssl_example_mul', 539 'boringssl_example_mul',
511 'boringssl_gcm_test', 540 'boringssl_gcm_test',
512 'boringssl_hkdf_test', 541 'boringssl_hkdf_test',
513 'boringssl_hmac_test', 542 'boringssl_hmac_test',
514 'boringssl_lhash_test', 543 'boringssl_lhash_test',
515 'boringssl_pbkdf_test', 544 'boringssl_pbkdf_test',
516 'boringssl_pkcs12_test', 545 'boringssl_pkcs12_test',
517 'boringssl_pkcs7_test', 546 'boringssl_pkcs7_test',
518 'boringssl_pkcs8_test', 547 'boringssl_pkcs8_test',
519 'boringssl_poly1305_test', 548 'boringssl_poly1305_test',
520 'boringssl_pqueue_test', 549 'boringssl_pqueue_test',
521 'boringssl_refcount_test', 550 'boringssl_refcount_test',
522 'boringssl_rsa_test', 551 'boringssl_rsa_test',
523 'boringssl_ssl_test', 552 'boringssl_ssl_test',
524 'boringssl_tab_test', 553 'boringssl_tab_test',
525 'boringssl_thread_test', 554 'boringssl_thread_test',
526 'boringssl_v3name_test', 555 'boringssl_v3name_test',
556 'boringssl_x25519_test',
527 ], 557 ],
528 } 558 }
529 } 559 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698