| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//testing/libfuzzer/fuzzer_test.gni") | 6 import("//testing/libfuzzer/fuzzer_test.gni") |
| 7 | 7 |
| 8 source_set("webcrypto") { | 8 static_library("webcrypto") { |
| 9 sources = [ | 9 sources = [ |
| 10 "algorithm_dispatch.cc", | 10 "algorithm_dispatch.cc", |
| 11 "algorithm_dispatch.h", | 11 "algorithm_dispatch.h", |
| 12 "algorithm_implementation.cc", | 12 "algorithm_implementation.cc", |
| 13 "algorithm_implementation.h", | 13 "algorithm_implementation.h", |
| 14 "algorithm_implementations.h", | 14 "algorithm_implementations.h", |
| 15 "algorithm_registry.cc", | 15 "algorithm_registry.cc", |
| 16 "algorithm_registry.h", | 16 "algorithm_registry.h", |
| 17 "algorithms/aes.cc", | 17 "algorithms/aes.cc", |
| 18 "algorithms/aes.h", | 18 "algorithms/aes.h", |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 fuzzer_test("webcrypto_rsa_import_key_spki_fuzzer") { | 158 fuzzer_test("webcrypto_rsa_import_key_spki_fuzzer") { |
| 159 sources = [ | 159 sources = [ |
| 160 "rsa_import_key_pkcs8_fuzzer.cc", | 160 "rsa_import_key_pkcs8_fuzzer.cc", |
| 161 ] | 161 ] |
| 162 deps = [ | 162 deps = [ |
| 163 ":fuzzer_support", | 163 ":fuzzer_support", |
| 164 ":webcrypto", | 164 ":webcrypto", |
| 165 "//third_party/WebKit/public:blink_headers", | 165 "//third_party/WebKit/public:blink_headers", |
| 166 ] | 166 ] |
| 167 } | 167 } |
| OLD | NEW |