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

Side by Side Diff: test/fuzzer/fuzzer.gyp

Issue 2447643002: [wasm] Add a new fuzzer which can also test wasm function calls. (Closed)
Patch Set: sign unsigned mismatch Created 4 years, 1 month 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
OLDNEW
1 # Copyright 2016 the V8 project authors. All rights reserved. 1 # Copyright 2016 the V8 project 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 { 5 {
6 'variables': { 6 'variables': {
7 'v8_code': 1, 7 'v8_code': 1,
8 }, 8 },
9 'includes': ['../../gypfiles/toolchain.gypi', '../../gypfiles/features.gypi'], 9 'includes': ['../../gypfiles/toolchain.gypi', '../../gypfiles/features.gypi'],
10 'targets': [ 10 'targets': [
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 'include_dirs': [ 136 'include_dirs': [
137 '../..', 137 '../..',
138 ], 138 ],
139 'sources': [ ### gcmole(all) ### 139 'sources': [ ### gcmole(all) ###
140 'wasm-asmjs.cc', 140 'wasm-asmjs.cc',
141 '../common/wasm/wasm-module-runner.cc', 141 '../common/wasm/wasm-module-runner.cc',
142 '../common/wasm/wasm-module-runner.h', 142 '../common/wasm/wasm-module-runner.h',
143 ], 143 ],
144 }, 144 },
145 { 145 {
146 'target_name': 'v8_simple_wasm_call_fuzzer',
147 'type': 'executable',
148 'dependencies': [
149 'wasm_call_fuzzer_lib',
150 ],
151 'include_dirs': [
152 '../..',
153 ],
154 'sources': [
155 'fuzzer.cc',
156 ],
157 },
158 {
159 'target_name': 'wasm_call_fuzzer_lib',
160 'type': 'static_library',
161 'dependencies': [
162 'fuzzer_support',
163 ],
164 'include_dirs': [
165 '../..',
166 ],
167 'sources': [ ### gcmole(all) ###
168 'wasm-call.cc',
169 '../common/wasm/test-signatures.h',
170 '../common/wasm/wasm-module-runner.cc',
171 '../common/wasm/wasm-module-runner.h',
172 ],
173 },
174 {
146 'target_name': 'v8_simple_wasm_code_fuzzer', 175 'target_name': 'v8_simple_wasm_code_fuzzer',
147 'type': 'executable', 176 'type': 'executable',
148 'dependencies': [ 177 'dependencies': [
149 'wasm_code_fuzzer_lib', 178 'wasm_code_fuzzer_lib',
150 ], 179 ],
151 'include_dirs': [ 180 'include_dirs': [
152 '../..', 181 '../..',
153 ], 182 ],
154 'sources': [ 183 'sources': [
155 'fuzzer.cc', 184 'fuzzer.cc',
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 '../../gypfiles/isolate.gypi', 444 '../../gypfiles/isolate.gypi',
416 ], 445 ],
417 'sources': [ 446 'sources': [
418 'fuzzer.isolate', 447 'fuzzer.isolate',
419 ], 448 ],
420 }, 449 },
421 ], 450 ],
422 }], 451 }],
423 ], 452 ],
424 } 453 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | test/fuzzer/fuzzer.isolate » ('j') | test/fuzzer/wasm-call.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698