OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
7 import("//build/config/mips.gni") | 7 import("//build/config/mips.gni") |
8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
9 | 9 |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 2182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2193 } | 2193 } |
2194 } | 2194 } |
2195 | 2195 |
2196 template("v8_fuzzer") { | 2196 template("v8_fuzzer") { |
2197 name = target_name | 2197 name = target_name |
2198 forward_variables_from(invoker, "*") | 2198 forward_variables_from(invoker, "*") |
2199 executable("v8_simple_" + name) { | 2199 executable("v8_simple_" + name) { |
2200 deps = [ | 2200 deps = [ |
2201 ":" + name, | 2201 ":" + name, |
2202 ":simple_fuzzer", | 2202 ":simple_fuzzer", |
| 2203 "//build/win:default_exe_manifest", |
2203 ] | 2204 ] |
2204 | 2205 |
2205 configs += [ ":external_config" ] | 2206 configs += [ ":external_config" ] |
2206 } | 2207 } |
2207 } | 2208 } |
2208 | 2209 |
2209 v8_source_set("json_fuzzer") { | 2210 v8_source_set("json_fuzzer") { |
2210 sources = [ | 2211 sources = [ |
2211 "test/fuzzer/json.cc", | 2212 "test/fuzzer/json.cc", |
2212 ] | 2213 ] |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2268 ] | 2269 ] |
2269 | 2270 |
2270 deps = [ | 2271 deps = [ |
2271 ":fuzzer_support", | 2272 ":fuzzer_support", |
2272 ] | 2273 ] |
2273 | 2274 |
2274 configs = [ ":internal_config" ] | 2275 configs = [ ":internal_config" ] |
2275 } | 2276 } |
2276 | 2277 |
2277 v8_fuzzer("wasm_asmjs_fuzzer") {} | 2278 v8_fuzzer("wasm_asmjs_fuzzer") {} |
OLD | NEW |