Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(677)

Side by Side Diff: BUILD.gn

Issue 2658723006: [wasm] Syntax- and Type-aware Fuzzer (Closed)
Patch Set: Adding support for more binops, etc. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | test/fuzzer/fuzzer.gyp » ('j') | test/fuzzer/wasm-compile.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | test/fuzzer/fuzzer.gyp » ('j') | test/fuzzer/wasm-compile.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698