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

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

Issue 1924693003: Rolls BoringSSL forward (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
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 {
10 'target_name': 'boringssl_base64_test', 38 'target_name': 'boringssl_base64_test',
11 'type': 'executable', 39 'type': 'executable',
12 'dependencies': [ 40 'dependencies': [
13 'boringssl.gyp:boringssl', 41 'boringssl.gyp:boringssl',
14 ], 42 ],
15 'sources': [ 43 'sources': [
16 'src/crypto/base64/base64_test.cc', 44 'src/crypto/base64/base64_test.cc',
17 '<@(boringssl_test_support_sources)', 45 '<@(boringssl_test_support_sources)',
18 ], 46 ],
19 # TODO(davidben): Fix size_t truncations in BoringSSL. 47 # TODO(davidben): Fix size_t truncations in BoringSSL.
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 ], 140 ],
113 'sources': [ 141 'sources': [
114 'src/crypto/constant_time_test.c', 142 'src/crypto/constant_time_test.c',
115 '<@(boringssl_test_support_sources)', 143 '<@(boringssl_test_support_sources)',
116 ], 144 ],
117 # TODO(davidben): Fix size_t truncations in BoringSSL. 145 # TODO(davidben): Fix size_t truncations in BoringSSL.
118 # https://crbug.com/429039 146 # https://crbug.com/429039
119 'msvs_disabled_warnings': [ 4267, ], 147 'msvs_disabled_warnings': [ 4267, ],
120 }, 148 },
121 { 149 {
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 {
122 'target_name': 'boringssl_dh_test', 178 'target_name': 'boringssl_dh_test',
123 'type': 'executable', 179 'type': 'executable',
124 'dependencies': [ 180 'dependencies': [
125 'boringssl.gyp:boringssl', 181 'boringssl.gyp:boringssl',
126 ], 182 ],
127 'sources': [ 183 'sources': [
128 'src/crypto/dh/dh_test.cc', 184 'src/crypto/dh/dh_test.cc',
129 '<@(boringssl_test_support_sources)', 185 '<@(boringssl_test_support_sources)',
130 ], 186 ],
131 # TODO(davidben): Fix size_t truncations in BoringSSL. 187 # TODO(davidben): Fix size_t truncations in BoringSSL.
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 ], 378 ],
323 'sources': [ 379 'sources': [
324 'src/crypto/pkcs8/pkcs12_test.cc', 380 'src/crypto/pkcs8/pkcs12_test.cc',
325 '<@(boringssl_test_support_sources)', 381 '<@(boringssl_test_support_sources)',
326 ], 382 ],
327 # TODO(davidben): Fix size_t truncations in BoringSSL. 383 # TODO(davidben): Fix size_t truncations in BoringSSL.
328 # https://crbug.com/429039 384 # https://crbug.com/429039
329 'msvs_disabled_warnings': [ 4267, ], 385 'msvs_disabled_warnings': [ 4267, ],
330 }, 386 },
331 { 387 {
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 {
332 'target_name': 'boringssl_refcount_test', 416 'target_name': 'boringssl_refcount_test',
333 'type': 'executable', 417 'type': 'executable',
334 'dependencies': [ 418 'dependencies': [
335 'boringssl.gyp:boringssl', 419 'boringssl.gyp:boringssl',
336 ], 420 ],
337 'sources': [ 421 'sources': [
338 'src/crypto/refcount_test.c', 422 'src/crypto/refcount_test.c',
339 '<@(boringssl_test_support_sources)', 423 '<@(boringssl_test_support_sources)',
340 ], 424 ],
341 # TODO(davidben): Fix size_t truncations in BoringSSL. 425 # TODO(davidben): Fix size_t truncations in BoringSSL.
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 ], 462 ],
379 'sources': [ 463 'sources': [
380 'src/crypto/x509/pkcs7_test.c', 464 'src/crypto/x509/pkcs7_test.c',
381 '<@(boringssl_test_support_sources)', 465 '<@(boringssl_test_support_sources)',
382 ], 466 ],
383 # TODO(davidben): Fix size_t truncations in BoringSSL. 467 # TODO(davidben): Fix size_t truncations in BoringSSL.
384 # https://crbug.com/429039 468 # https://crbug.com/429039
385 'msvs_disabled_warnings': [ 4267, ], 469 'msvs_disabled_warnings': [ 4267, ],
386 }, 470 },
387 { 471 {
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 {
388 'target_name': 'boringssl_tab_test', 486 'target_name': 'boringssl_tab_test',
389 'type': 'executable', 487 'type': 'executable',
390 'dependencies': [ 488 'dependencies': [
391 'boringssl.gyp:boringssl', 489 'boringssl.gyp:boringssl',
392 ], 490 ],
393 'sources': [ 491 'sources': [
394 'src/crypto/x509v3/tab_test.c', 492 'src/crypto/x509v3/tab_test.c',
395 '<@(boringssl_test_support_sources)', 493 '<@(boringssl_test_support_sources)',
396 ], 494 ],
397 # TODO(davidben): Fix size_t truncations in BoringSSL. 495 # TODO(davidben): Fix size_t truncations in BoringSSL.
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 ], 536 ],
439 # TODO(davidben): Fix size_t truncations in BoringSSL. 537 # TODO(davidben): Fix size_t truncations in BoringSSL.
440 # https://crbug.com/429039 538 # https://crbug.com/429039
441 'msvs_disabled_warnings': [ 4267, ], 539 'msvs_disabled_warnings': [ 4267, ],
442 }, 540 },
443 ], 541 ],
444 'variables': { 542 'variables': {
445 'boringssl_test_support_sources': [ 543 'boringssl_test_support_sources': [
446 'src/crypto/test/file_test.cc', 544 'src/crypto/test/file_test.cc',
447 'src/crypto/test/malloc.cc', 545 'src/crypto/test/malloc.cc',
546 'src/crypto/test/test_util.cc',
448 ], 547 ],
449 'boringssl_test_targets': [ 548 'boringssl_test_targets': [
450 'boringssl_aead_test', 549 'boringssl_aead_test',
550 'boringssl_aes_test',
551 'boringssl_asn1_test',
451 'boringssl_base64_test', 552 'boringssl_base64_test',
452 'boringssl_bio_test', 553 'boringssl_bio_test',
453 'boringssl_bn_test', 554 'boringssl_bn_test',
454 'boringssl_bytestring_test', 555 'boringssl_bytestring_test',
455 'boringssl_cipher_test', 556 'boringssl_cipher_test',
456 'boringssl_cmac_test', 557 'boringssl_cmac_test',
457 'boringssl_constant_time_test', 558 'boringssl_constant_time_test',
458 'boringssl_dh_test', 559 'boringssl_dh_test',
459 'boringssl_digest_test', 560 'boringssl_digest_test',
460 'boringssl_dsa_test', 561 'boringssl_dsa_test',
461 'boringssl_ec_test', 562 'boringssl_ec_test',
462 'boringssl_ecdsa_test', 563 'boringssl_ecdsa_test',
564 'boringssl_ed25519_test',
463 'boringssl_err_test', 565 'boringssl_err_test',
464 'boringssl_evp_extra_test', 566 'boringssl_evp_extra_test',
465 'boringssl_evp_test', 567 'boringssl_evp_test',
466 'boringssl_example_mul', 568 'boringssl_example_mul',
467 'boringssl_gcm_test', 569 'boringssl_gcm_test',
468 'boringssl_hkdf_test', 570 'boringssl_hkdf_test',
469 'boringssl_hmac_test', 571 'boringssl_hmac_test',
470 'boringssl_lhash_test', 572 'boringssl_lhash_test',
471 'boringssl_pbkdf_test', 573 'boringssl_pbkdf_test',
472 'boringssl_pkcs12_test', 574 'boringssl_pkcs12_test',
473 'boringssl_pkcs7_test', 575 'boringssl_pkcs7_test',
576 'boringssl_pkcs8_test',
577 'boringssl_poly1305_test',
474 'boringssl_pqueue_test', 578 'boringssl_pqueue_test',
475 'boringssl_refcount_test', 579 'boringssl_refcount_test',
476 'boringssl_rsa_test', 580 'boringssl_rsa_test',
477 'boringssl_ssl_test', 581 'boringssl_ssl_test',
478 'boringssl_tab_test', 582 'boringssl_tab_test',
479 'boringssl_thread_test', 583 'boringssl_thread_test',
480 'boringssl_v3name_test', 584 'boringssl_v3name_test',
585 'boringssl_x25519_test',
586 'boringssl_x509_test',
481 ], 587 ],
482 } 588 }
483 } 589 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698