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/dcheck_always_on.gni") | 7 import("//build/config/dcheck_always_on.gni") |
8 import("//build/config/mips.gni") | 8 import("//build/config/mips.gni") |
9 import("//build/config/sanitizers/sanitizers.gni") | 9 import("//build/config/sanitizers/sanitizers.gni") |
10 | 10 |
(...skipping 3059 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3070 ] | 3070 ] |
3071 | 3071 |
3072 configs = [ | 3072 configs = [ |
3073 ":external_config", | 3073 ":external_config", |
3074 ":internal_config_base", | 3074 ":internal_config_base", |
3075 ] | 3075 ] |
3076 } | 3076 } |
3077 | 3077 |
3078 v8_fuzzer("wasm_data_section_fuzzer") { | 3078 v8_fuzzer("wasm_data_section_fuzzer") { |
3079 } | 3079 } |
| 3080 |
| 3081 v8_source_set("wasm_compile_fuzzer") { |
| 3082 sources = [ |
| 3083 "test/fuzzer/wasm-compile.cc", |
| 3084 ] |
| 3085 |
| 3086 deps = [ |
| 3087 ":fuzzer_support", |
| 3088 ":wasm_module_runner", |
| 3089 ":wasm_test_signatures", |
| 3090 ] |
| 3091 |
| 3092 configs = [ |
| 3093 ":external_config", |
| 3094 ":internal_config_base", |
| 3095 ] |
| 3096 } |
| 3097 |
| 3098 v8_fuzzer("wasm_compile_fuzzer") { |
| 3099 } |
OLD | NEW |