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 3083 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3094 ] | 3094 ] |
3095 | 3095 |
3096 configs = [ | 3096 configs = [ |
3097 ":external_config", | 3097 ":external_config", |
3098 ":internal_config_base", | 3098 ":internal_config_base", |
3099 ] | 3099 ] |
3100 } | 3100 } |
3101 | 3101 |
3102 v8_fuzzer("wasm_data_section_fuzzer") { | 3102 v8_fuzzer("wasm_data_section_fuzzer") { |
3103 } | 3103 } |
| 3104 |
| 3105 v8_source_set("wasm_compile_fuzzer") { |
| 3106 sources = [ |
| 3107 "test/fuzzer/wasm-compile.cc", |
| 3108 ] |
| 3109 |
| 3110 deps = [ |
| 3111 ":fuzzer_support", |
| 3112 ":wasm_module_runner", |
| 3113 ":wasm_test_signatures", |
| 3114 ] |
| 3115 |
| 3116 configs = [ |
| 3117 ":external_config", |
| 3118 ":internal_config_base", |
| 3119 ] |
| 3120 } |
| 3121 |
| 3122 v8_fuzzer("wasm_compile_fuzzer") { |
| 3123 } |
OLD | NEW |