| 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 source_set("webcrypto") { |
| 9 sources = [ | 9 sources = [ |
| 10 "algorithm_dispatch.cc", | 10 "algorithm_dispatch.cc", |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 # dependencies). | 100 # dependencies). |
| 101 source_set("fuzzer_support") { | 101 source_set("fuzzer_support") { |
| 102 testonly = true | 102 testonly = true |
| 103 | 103 |
| 104 sources = [ | 104 sources = [ |
| 105 "fuzzer_support.cc", | 105 "fuzzer_support.cc", |
| 106 "fuzzer_support.h", | 106 "fuzzer_support.h", |
| 107 ] | 107 ] |
| 108 deps = [ | 108 deps = [ |
| 109 ":webcrypto", | 109 ":webcrypto", |
| 110 "//base", |
| 110 "//crypto", | 111 "//crypto", |
| 111 "//crypto:platform", | 112 "//crypto:platform", |
| 112 "//third_party/WebKit/public:blink", | 113 "//third_party/WebKit/public:blink", |
| 113 | 114 |
| 114 # This contains a helper function for initializing Blink (needed for | 115 # This contains a helper function for initializing Blink (needed for |
| 115 # PartitionAlloc initialization). | 116 # PartitionAlloc initialization). |
| 116 "//components/test_runner:test_runner", | 117 "//components/test_runner:test_runner", |
| 117 ] | 118 ] |
| 118 } | 119 } |
| 119 | 120 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 fuzzer_test("webcrypto_rsa_import_key_spki_fuzzer") { | 158 fuzzer_test("webcrypto_rsa_import_key_spki_fuzzer") { |
| 158 sources = [ | 159 sources = [ |
| 159 "rsa_import_key_pkcs8_fuzzer.cc", | 160 "rsa_import_key_pkcs8_fuzzer.cc", |
| 160 ] | 161 ] |
| 161 deps = [ | 162 deps = [ |
| 162 ":fuzzer_support", | 163 ":fuzzer_support", |
| 163 ":webcrypto", | 164 ":webcrypto", |
| 164 "//third_party/WebKit/public:blink_headers", | 165 "//third_party/WebKit/public:blink_headers", |
| 165 ] | 166 ] |
| 166 } | 167 } |
| OLD | NEW |