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

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

Issue 1608963004: Roll src/third_party/boringssl/src afe57cb14..6c22f542f (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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', 10 'target_name': 'boringssl_aes_test',
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 ], 448 ],
449 'sources': [ 449 'sources': [
450 'src/crypto/x509/pkcs7_test.c', 450 'src/crypto/x509/pkcs7_test.c',
451 '<@(boringssl_test_support_sources)', 451 '<@(boringssl_test_support_sources)',
452 ], 452 ],
453 # TODO(davidben): Fix size_t truncations in BoringSSL. 453 # TODO(davidben): Fix size_t truncations in BoringSSL.
454 # https://crbug.com/429039 454 # https://crbug.com/429039
455 'msvs_disabled_warnings': [ 4267, ], 455 'msvs_disabled_warnings': [ 4267, ],
456 }, 456 },
457 { 457 {
458 'target_name': 'boringssl_x509_test',
459 'type': 'executable',
460 'dependencies': [
461 'boringssl.gyp:boringssl',
462 ],
463 'sources': [
464 'src/crypto/x509/x509_test.cc',
465 '<@(boringssl_test_support_sources)',
466 ],
467 # TODO(davidben): Fix size_t truncations in BoringSSL.
468 # https://crbug.com/429039
469 'msvs_disabled_warnings': [ 4267, ],
470 },
471 {
458 'target_name': 'boringssl_tab_test', 472 'target_name': 'boringssl_tab_test',
459 'type': 'executable', 473 'type': 'executable',
460 'dependencies': [ 474 'dependencies': [
461 'boringssl.gyp:boringssl', 475 'boringssl.gyp:boringssl',
462 ], 476 ],
463 'sources': [ 477 'sources': [
464 'src/crypto/x509v3/tab_test.c', 478 'src/crypto/x509v3/tab_test.c',
465 '<@(boringssl_test_support_sources)', 479 '<@(boringssl_test_support_sources)',
466 ], 480 ],
467 # TODO(davidben): Fix size_t truncations in BoringSSL. 481 # TODO(davidben): Fix size_t truncations in BoringSSL.
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 'boringssl_pkcs8_test', 561 'boringssl_pkcs8_test',
548 'boringssl_poly1305_test', 562 'boringssl_poly1305_test',
549 'boringssl_pqueue_test', 563 'boringssl_pqueue_test',
550 'boringssl_refcount_test', 564 'boringssl_refcount_test',
551 'boringssl_rsa_test', 565 'boringssl_rsa_test',
552 'boringssl_ssl_test', 566 'boringssl_ssl_test',
553 'boringssl_tab_test', 567 'boringssl_tab_test',
554 'boringssl_thread_test', 568 'boringssl_thread_test',
555 'boringssl_v3name_test', 569 'boringssl_v3name_test',
556 'boringssl_x25519_test', 570 'boringssl_x25519_test',
571 'boringssl_x509_test',
557 ], 572 ],
558 } 573 }
559 } 574 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698