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

Side by Side Diff: BUILD.gn

Issue 2658723006: [wasm] Syntax- and Type-aware Fuzzer (Closed)
Patch Set: fixing nits 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') | no next file with comments »
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 3083 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « no previous file | test/fuzzer/fuzzer.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698