OLD | NEW |
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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 '../..', | 194 '../..', |
195 ], | 195 ], |
196 'sources': [ ### gcmole(all) ### | 196 'sources': [ ### gcmole(all) ### |
197 'wasm-code.cc', | 197 'wasm-code.cc', |
198 '../common/wasm/test-signatures.h', | 198 '../common/wasm/test-signatures.h', |
199 '../common/wasm/wasm-module-runner.cc', | 199 '../common/wasm/wasm-module-runner.cc', |
200 '../common/wasm/wasm-module-runner.h', | 200 '../common/wasm/wasm-module-runner.h', |
201 ], | 201 ], |
202 }, | 202 }, |
203 { | 203 { |
| 204 'target_name': 'v8_simple_wasm_compile_fuzzer', |
| 205 'type': 'executable', |
| 206 'dependencies': [ |
| 207 'wasm_compile_fuzzer_lib', |
| 208 ], |
| 209 'include_dirs': [ |
| 210 '../..', |
| 211 ], |
| 212 'sources': [ |
| 213 'fuzzer.cc', |
| 214 ], |
| 215 }, |
| 216 { |
| 217 'target_name': 'wasm_compile_fuzzer_lib', |
| 218 'type': 'static_library', |
| 219 'dependencies': [ |
| 220 'fuzzer_support', |
| 221 ], |
| 222 'include_dirs': [ |
| 223 '../..', |
| 224 ], |
| 225 'sources': [ ### gcmole(all) ### |
| 226 'wasm-compile.cc', |
| 227 '../common/wasm/test-signatures.h', |
| 228 '../common/wasm/wasm-module-runner.cc', |
| 229 '../common/wasm/wasm-module-runner.h', |
| 230 ], |
| 231 }, |
| 232 { |
204 'target_name': 'v8_simple_wasm_data_section_fuzzer', | 233 'target_name': 'v8_simple_wasm_data_section_fuzzer', |
205 'type': 'executable', | 234 'type': 'executable', |
206 'dependencies': [ | 235 'dependencies': [ |
207 'wasm_data_section_fuzzer_lib', | 236 'wasm_data_section_fuzzer_lib', |
208 ], | 237 ], |
209 'include_dirs': [ | 238 'include_dirs': [ |
210 '../..', | 239 '../..', |
211 ], | 240 ], |
212 'sources': [ | 241 'sources': [ |
213 'fuzzer.cc', | 242 'fuzzer.cc', |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
452 '../../gypfiles/isolate.gypi', | 481 '../../gypfiles/isolate.gypi', |
453 ], | 482 ], |
454 'sources': [ | 483 'sources': [ |
455 'fuzzer.isolate', | 484 'fuzzer.isolate', |
456 ], | 485 ], |
457 }, | 486 }, |
458 ], | 487 ], |
459 }], | 488 }], |
460 ], | 489 ], |
461 } | 490 } |
OLD | NEW |