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", |
11 "src/crypto/test/scoped_types.h", | |
12 "src/crypto/test/test_util.cc", | 11 "src/crypto/test/test_util.cc", |
13 "src/crypto/test/test_util.h", | 12 "src/crypto/test/test_util.h", |
14 "src/ssl/test/async_bio.h", | 13 "src/ssl/test/async_bio.h", |
15 "src/ssl/test/packeted_bio.h", | 14 "src/ssl/test/packeted_bio.h", |
16 "src/ssl/test/scoped_types.h", | |
17 "src/ssl/test/test_config.h", | 15 "src/ssl/test/test_config.h", |
18 ] | 16 ] |
19 | 17 |
20 template("create_tests") { | 18 template("create_tests") { |
21 executable("boringssl_aes_test") { | 19 executable("boringssl_aes_test") { |
22 sources = [ | 20 sources = [ |
23 "src/crypto/aes/aes_test.cc", | 21 "src/crypto/aes/aes_test.cc", |
24 ] | 22 ] |
25 sources += _test_support_sources | 23 sources += _test_support_sources |
26 if (defined(invoker.configs_exclude)) { | 24 if (defined(invoker.configs_exclude)) { |
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
614 ":boringssl_spake25519_test", | 612 ":boringssl_spake25519_test", |
615 ":boringssl_ssl_test", | 613 ":boringssl_ssl_test", |
616 ":boringssl_tab_test", | 614 ":boringssl_tab_test", |
617 ":boringssl_thread_test", | 615 ":boringssl_thread_test", |
618 ":boringssl_v3name_test", | 616 ":boringssl_v3name_test", |
619 ":boringssl_x25519_test", | 617 ":boringssl_x25519_test", |
620 ":boringssl_x509_test", | 618 ":boringssl_x509_test", |
621 ] | 619 ] |
622 } | 620 } |
623 } | 621 } |
OLD | NEW |