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

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

Issue 2280623002: [wasm] Create a new fuzzer for wasm code. (Closed)
Patch Set: Getting the naming scheme right Created 4 years, 3 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 | « BUILD.gn ('k') | test/fuzzer/fuzzer.isolate » ('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 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 'fuzzer_support', 132 'fuzzer_support',
133 ], 133 ],
134 'include_dirs': [ 134 'include_dirs': [
135 '../..', 135 '../..',
136 ], 136 ],
137 'sources': [ ### gcmole(all) ### 137 'sources': [ ### gcmole(all) ###
138 'wasm-asmjs.cc', 138 'wasm-asmjs.cc',
139 ], 139 ],
140 }, 140 },
141 { 141 {
142 'target_name': 'v8_simple_wasm_code_fuzzer',
143 'type': 'executable',
144 'dependencies': [
145 'wasm_code_fuzzer_lib',
146 ],
147 'include_dirs': [
148 '../..',
149 ],
150 'sources': [
151 'fuzzer.cc',
152 ],
153 },
154 {
155 'target_name': 'wasm_code_fuzzer_lib',
156 'type': 'static_library',
157 'dependencies': [
158 'fuzzer_support',
159 ],
160 'include_dirs': [
161 '../..',
162 ],
163 'sources': [ ### gcmole(all) ###
164 'wasm-code.cc',
165 ],
166 },
167 {
142 'target_name': 'fuzzer_support', 168 'target_name': 'fuzzer_support',
143 'type': 'static_library', 169 'type': 'static_library',
144 'dependencies': [ 170 'dependencies': [
145 '../../src/v8.gyp:v8_libplatform', 171 '../../src/v8.gyp:v8_libplatform',
146 ], 172 ],
147 'include_dirs': [ 173 'include_dirs': [
148 '../..', 174 '../..',
149 ], 175 ],
150 'sources': [ ### gcmole(all) ### 176 'sources': [ ### gcmole(all) ###
151 'fuzzer-support.cc', 177 'fuzzer-support.cc',
(...skipping 27 matching lines...) Expand all
179 '../../gypfiles/isolate.gypi', 205 '../../gypfiles/isolate.gypi',
180 ], 206 ],
181 'sources': [ 207 'sources': [
182 'fuzzer.isolate', 208 'fuzzer.isolate',
183 ], 209 ],
184 }, 210 },
185 ], 211 ],
186 }], 212 }],
187 ], 213 ],
188 } 214 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | test/fuzzer/fuzzer.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698