| OLD | NEW |
| 1 # Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2016 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 _test_support_sources = [ | 7 _test_support_sources = [ |
| 8 "src/crypto/test/file_test.cc", | 8 "src/crypto/test/file_test.cc", |
| 9 "src/crypto/test/file_test.h", | 9 "src/crypto/test/file_test.h", |
| 10 "src/crypto/test/malloc.cc", | 10 "src/crypto/test/malloc.cc", |
| (...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 "src/crypto/x509v3/v3name_test.c", | 515 "src/crypto/x509v3/v3name_test.c", |
| 516 ] | 516 ] |
| 517 sources += _test_support_sources | 517 sources += _test_support_sources |
| 518 if (defined(invoker.configs_exclude)) { | 518 if (defined(invoker.configs_exclude)) { |
| 519 configs -= invoker.configs_exclude | 519 configs -= invoker.configs_exclude |
| 520 } | 520 } |
| 521 configs += invoker.configs | 521 configs += invoker.configs |
| 522 deps = invoker.deps | 522 deps = invoker.deps |
| 523 } | 523 } |
| 524 | 524 |
| 525 executable("boringssl_pqueue_test") { | |
| 526 sources = [ | |
| 527 "src/ssl/pqueue/pqueue_test.c", | |
| 528 ] | |
| 529 sources += _test_support_sources | |
| 530 if (defined(invoker.configs_exclude)) { | |
| 531 configs -= invoker.configs_exclude | |
| 532 } | |
| 533 configs += invoker.configs | |
| 534 deps = invoker.deps | |
| 535 } | |
| 536 | |
| 537 executable("boringssl_ssl_test") { | 525 executable("boringssl_ssl_test") { |
| 538 sources = [ | 526 sources = [ |
| 539 "src/ssl/ssl_test.cc", | 527 "src/ssl/ssl_test.cc", |
| 540 ] | 528 ] |
| 541 sources += _test_support_sources | 529 sources += _test_support_sources |
| 542 if (defined(invoker.configs_exclude)) { | 530 if (defined(invoker.configs_exclude)) { |
| 543 configs -= invoker.configs_exclude | 531 configs -= invoker.configs_exclude |
| 544 } | 532 } |
| 545 configs += invoker.configs | 533 configs += invoker.configs |
| 546 deps = invoker.deps | 534 deps = invoker.deps |
| (...skipping 28 matching lines...) Expand all Loading... |
| 575 ":boringssl_lhash_test", | 563 ":boringssl_lhash_test", |
| 576 ":boringssl_newhope_statistical_test", | 564 ":boringssl_newhope_statistical_test", |
| 577 ":boringssl_newhope_test", | 565 ":boringssl_newhope_test", |
| 578 ":boringssl_newhope_vectors_test", | 566 ":boringssl_newhope_vectors_test", |
| 579 ":boringssl_obj_test", | 567 ":boringssl_obj_test", |
| 580 ":boringssl_pbkdf_test", | 568 ":boringssl_pbkdf_test", |
| 581 ":boringssl_pkcs12_test", | 569 ":boringssl_pkcs12_test", |
| 582 ":boringssl_pkcs7_test", | 570 ":boringssl_pkcs7_test", |
| 583 ":boringssl_pkcs8_test", | 571 ":boringssl_pkcs8_test", |
| 584 ":boringssl_poly1305_test", | 572 ":boringssl_poly1305_test", |
| 585 ":boringssl_pqueue_test", | |
| 586 ":boringssl_refcount_test", | 573 ":boringssl_refcount_test", |
| 587 ":boringssl_rsa_test", | 574 ":boringssl_rsa_test", |
| 588 ":boringssl_spake25519_test", | 575 ":boringssl_spake25519_test", |
| 589 ":boringssl_ssl_test", | 576 ":boringssl_ssl_test", |
| 590 ":boringssl_tab_test", | 577 ":boringssl_tab_test", |
| 591 ":boringssl_thread_test", | 578 ":boringssl_thread_test", |
| 592 ":boringssl_v3name_test", | 579 ":boringssl_v3name_test", |
| 593 ":boringssl_x25519_test", | 580 ":boringssl_x25519_test", |
| 594 ":boringssl_x509_test", | 581 ":boringssl_x509_test", |
| 595 ] | 582 ] |
| 596 } | 583 } |
| 597 } | 584 } |
| OLD | NEW |