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

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

Issue 1938433002: Revert BoringSSL Roll (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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_dart.gyp ('k') | third_party/boringssl/err_data.c » ('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 generate_build_files.py. Do not edit manually.
6 6
7 { 7 {
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'boringssl_aes_test',
11 'type': 'executable',
12 'dependencies': [
13 'boringssl.gyp:boringssl',
14 ],
15 'sources': [
16 'src/crypto/aes/aes_test.cc',
17 '<@(boringssl_test_support_sources)',
18 ],
19 # TODO(davidben): Fix size_t truncations in BoringSSL.
20 # https://crbug.com/429039
21 'msvs_disabled_warnings': [ 4267, ],
22 },
23 {
24 'target_name': 'boringssl_asn1_test',
25 'type': 'executable',
26 'dependencies': [
27 'boringssl.gyp:boringssl',
28 ],
29 'sources': [
30 'src/crypto/asn1/asn1_test.cc',
31 '<@(boringssl_test_support_sources)',
32 ],
33 # TODO(davidben): Fix size_t truncations in BoringSSL.
34 # https://crbug.com/429039
35 'msvs_disabled_warnings': [ 4267, ],
36 },
37 {
38 'target_name': 'boringssl_base64_test', 10 'target_name': 'boringssl_base64_test',
39 'type': 'executable', 11 'type': 'executable',
40 'dependencies': [ 12 'dependencies': [
41 'boringssl.gyp:boringssl', 13 'boringssl.gyp:boringssl',
42 ], 14 ],
43 'sources': [ 15 'sources': [
44 'src/crypto/base64/base64_test.cc', 16 'src/crypto/base64/base64_test.cc',
45 '<@(boringssl_test_support_sources)', 17 '<@(boringssl_test_support_sources)',
46 ], 18 ],
47 # TODO(davidben): Fix size_t truncations in BoringSSL. 19 # TODO(davidben): Fix size_t truncations in BoringSSL.
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 ], 112 ],
141 'sources': [ 113 'sources': [
142 'src/crypto/constant_time_test.c', 114 'src/crypto/constant_time_test.c',
143 '<@(boringssl_test_support_sources)', 115 '<@(boringssl_test_support_sources)',
144 ], 116 ],
145 # TODO(davidben): Fix size_t truncations in BoringSSL. 117 # TODO(davidben): Fix size_t truncations in BoringSSL.
146 # https://crbug.com/429039 118 # https://crbug.com/429039
147 'msvs_disabled_warnings': [ 4267, ], 119 'msvs_disabled_warnings': [ 4267, ],
148 }, 120 },
149 { 121 {
150 'target_name': 'boringssl_ed25519_test',
151 'type': 'executable',
152 'dependencies': [
153 'boringssl.gyp:boringssl',
154 ],
155 'sources': [
156 'src/crypto/curve25519/ed25519_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 {
164 'target_name': 'boringssl_x25519_test',
165 'type': 'executable',
166 'dependencies': [
167 'boringssl.gyp:boringssl',
168 ],
169 'sources': [
170 'src/crypto/curve25519/x25519_test.cc',
171 '<@(boringssl_test_support_sources)',
172 ],
173 # TODO(davidben): Fix size_t truncations in BoringSSL.
174 # https://crbug.com/429039
175 'msvs_disabled_warnings': [ 4267, ],
176 },
177 {
178 'target_name': 'boringssl_dh_test', 122 'target_name': 'boringssl_dh_test',
179 'type': 'executable', 123 'type': 'executable',
180 'dependencies': [ 124 'dependencies': [
181 'boringssl.gyp:boringssl', 125 'boringssl.gyp:boringssl',
182 ], 126 ],
183 'sources': [ 127 'sources': [
184 'src/crypto/dh/dh_test.cc', 128 'src/crypto/dh/dh_test.cc',
185 '<@(boringssl_test_support_sources)', 129 '<@(boringssl_test_support_sources)',
186 ], 130 ],
187 # TODO(davidben): Fix size_t truncations in BoringSSL. 131 # TODO(davidben): Fix size_t truncations in BoringSSL.
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 ], 322 ],
379 'sources': [ 323 'sources': [
380 'src/crypto/pkcs8/pkcs12_test.cc', 324 'src/crypto/pkcs8/pkcs12_test.cc',
381 '<@(boringssl_test_support_sources)', 325 '<@(boringssl_test_support_sources)',
382 ], 326 ],
383 # TODO(davidben): Fix size_t truncations in BoringSSL. 327 # TODO(davidben): Fix size_t truncations in BoringSSL.
384 # https://crbug.com/429039 328 # https://crbug.com/429039
385 'msvs_disabled_warnings': [ 4267, ], 329 'msvs_disabled_warnings': [ 4267, ],
386 }, 330 },
387 { 331 {
388 'target_name': 'boringssl_pkcs8_test',
389 'type': 'executable',
390 'dependencies': [
391 'boringssl.gyp:boringssl',
392 ],
393 'sources': [
394 'src/crypto/pkcs8/pkcs8_test.cc',
395 '<@(boringssl_test_support_sources)',
396 ],
397 # TODO(davidben): Fix size_t truncations in BoringSSL.
398 # https://crbug.com/429039
399 'msvs_disabled_warnings': [ 4267, ],
400 },
401 {
402 'target_name': 'boringssl_poly1305_test',
403 'type': 'executable',
404 'dependencies': [
405 'boringssl.gyp:boringssl',
406 ],
407 'sources': [
408 'src/crypto/poly1305/poly1305_test.cc',
409 '<@(boringssl_test_support_sources)',
410 ],
411 # TODO(davidben): Fix size_t truncations in BoringSSL.
412 # https://crbug.com/429039
413 'msvs_disabled_warnings': [ 4267, ],
414 },
415 {
416 'target_name': 'boringssl_refcount_test', 332 'target_name': 'boringssl_refcount_test',
417 'type': 'executable', 333 'type': 'executable',
418 'dependencies': [ 334 'dependencies': [
419 'boringssl.gyp:boringssl', 335 'boringssl.gyp:boringssl',
420 ], 336 ],
421 'sources': [ 337 'sources': [
422 'src/crypto/refcount_test.c', 338 'src/crypto/refcount_test.c',
423 '<@(boringssl_test_support_sources)', 339 '<@(boringssl_test_support_sources)',
424 ], 340 ],
425 # TODO(davidben): Fix size_t truncations in BoringSSL. 341 # TODO(davidben): Fix size_t truncations in BoringSSL.
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 ], 378 ],
463 'sources': [ 379 'sources': [
464 'src/crypto/x509/pkcs7_test.c', 380 'src/crypto/x509/pkcs7_test.c',
465 '<@(boringssl_test_support_sources)', 381 '<@(boringssl_test_support_sources)',
466 ], 382 ],
467 # TODO(davidben): Fix size_t truncations in BoringSSL. 383 # TODO(davidben): Fix size_t truncations in BoringSSL.
468 # https://crbug.com/429039 384 # https://crbug.com/429039
469 'msvs_disabled_warnings': [ 4267, ], 385 'msvs_disabled_warnings': [ 4267, ],
470 }, 386 },
471 { 387 {
472 'target_name': 'boringssl_x509_test',
473 'type': 'executable',
474 'dependencies': [
475 'boringssl.gyp:boringssl',
476 ],
477 'sources': [
478 'src/crypto/x509/x509_test.cc',
479 '<@(boringssl_test_support_sources)',
480 ],
481 # TODO(davidben): Fix size_t truncations in BoringSSL.
482 # https://crbug.com/429039
483 'msvs_disabled_warnings': [ 4267, ],
484 },
485 {
486 'target_name': 'boringssl_tab_test', 388 'target_name': 'boringssl_tab_test',
487 'type': 'executable', 389 'type': 'executable',
488 'dependencies': [ 390 'dependencies': [
489 'boringssl.gyp:boringssl', 391 'boringssl.gyp:boringssl',
490 ], 392 ],
491 'sources': [ 393 'sources': [
492 'src/crypto/x509v3/tab_test.c', 394 'src/crypto/x509v3/tab_test.c',
493 '<@(boringssl_test_support_sources)', 395 '<@(boringssl_test_support_sources)',
494 ], 396 ],
495 # TODO(davidben): Fix size_t truncations in BoringSSL. 397 # TODO(davidben): Fix size_t truncations in BoringSSL.
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 ], 438 ],
537 # TODO(davidben): Fix size_t truncations in BoringSSL. 439 # TODO(davidben): Fix size_t truncations in BoringSSL.
538 # https://crbug.com/429039 440 # https://crbug.com/429039
539 'msvs_disabled_warnings': [ 4267, ], 441 'msvs_disabled_warnings': [ 4267, ],
540 }, 442 },
541 ], 443 ],
542 'variables': { 444 'variables': {
543 'boringssl_test_support_sources': [ 445 'boringssl_test_support_sources': [
544 'src/crypto/test/file_test.cc', 446 'src/crypto/test/file_test.cc',
545 'src/crypto/test/malloc.cc', 447 'src/crypto/test/malloc.cc',
546 'src/crypto/test/test_util.cc',
547 ], 448 ],
548 'boringssl_test_targets': [ 449 'boringssl_test_targets': [
549 'boringssl_aead_test', 450 'boringssl_aead_test',
550 'boringssl_aes_test',
551 'boringssl_asn1_test',
552 'boringssl_base64_test', 451 'boringssl_base64_test',
553 'boringssl_bio_test', 452 'boringssl_bio_test',
554 'boringssl_bn_test', 453 'boringssl_bn_test',
555 'boringssl_bytestring_test', 454 'boringssl_bytestring_test',
556 'boringssl_cipher_test', 455 'boringssl_cipher_test',
557 'boringssl_cmac_test', 456 'boringssl_cmac_test',
558 'boringssl_constant_time_test', 457 'boringssl_constant_time_test',
559 'boringssl_dh_test', 458 'boringssl_dh_test',
560 'boringssl_digest_test', 459 'boringssl_digest_test',
561 'boringssl_dsa_test', 460 'boringssl_dsa_test',
562 'boringssl_ec_test', 461 'boringssl_ec_test',
563 'boringssl_ecdsa_test', 462 'boringssl_ecdsa_test',
564 'boringssl_ed25519_test',
565 'boringssl_err_test', 463 'boringssl_err_test',
566 'boringssl_evp_extra_test', 464 'boringssl_evp_extra_test',
567 'boringssl_evp_test', 465 'boringssl_evp_test',
568 'boringssl_example_mul', 466 'boringssl_example_mul',
569 'boringssl_gcm_test', 467 'boringssl_gcm_test',
570 'boringssl_hkdf_test', 468 'boringssl_hkdf_test',
571 'boringssl_hmac_test', 469 'boringssl_hmac_test',
572 'boringssl_lhash_test', 470 'boringssl_lhash_test',
573 'boringssl_pbkdf_test', 471 'boringssl_pbkdf_test',
574 'boringssl_pkcs12_test', 472 'boringssl_pkcs12_test',
575 'boringssl_pkcs7_test', 473 'boringssl_pkcs7_test',
576 'boringssl_pkcs8_test',
577 'boringssl_poly1305_test',
578 'boringssl_pqueue_test', 474 'boringssl_pqueue_test',
579 'boringssl_refcount_test', 475 'boringssl_refcount_test',
580 'boringssl_rsa_test', 476 'boringssl_rsa_test',
581 'boringssl_ssl_test', 477 'boringssl_ssl_test',
582 'boringssl_tab_test', 478 'boringssl_tab_test',
583 'boringssl_thread_test', 479 'boringssl_thread_test',
584 'boringssl_v3name_test', 480 'boringssl_v3name_test',
585 'boringssl_x25519_test',
586 'boringssl_x509_test',
587 ], 481 ],
588 } 482 }
589 } 483 }
OLDNEW
« no previous file with comments | « third_party/boringssl/boringssl_dart.gyp ('k') | third_party/boringssl/err_data.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698