| Index: test/fuzzer/fuzzer.gyp
|
| diff --git a/test/fuzzer/fuzzer.gyp b/test/fuzzer/fuzzer.gyp
|
| index 5fc338cb58e59a0aca65660660f9690b3431bbee..6e15a906bbeecb51c8cd6fecd0c9ba9e75ff2890 100644
|
| --- a/test/fuzzer/fuzzer.gyp
|
| +++ b/test/fuzzer/fuzzer.gyp
|
| @@ -87,6 +87,58 @@
|
| ],
|
| },
|
| {
|
| + 'target_name': 'wasm_fuzzer',
|
| + 'type': 'executable',
|
| + 'dependencies': [
|
| + 'wasm_fuzzer_lib',
|
| + ],
|
| + 'include_dirs': [
|
| + '../..',
|
| + ],
|
| + 'sources': [
|
| + 'fuzzer.cc',
|
| + ],
|
| + },
|
| + {
|
| + 'target_name': 'wasm_fuzzer_lib',
|
| + 'type': 'static_library',
|
| + 'dependencies': [
|
| + 'fuzzer_support',
|
| + ],
|
| + 'include_dirs': [
|
| + '../..',
|
| + ],
|
| + 'sources': [ ### gcmole(all) ###
|
| + 'wasm.cc',
|
| + ],
|
| + },
|
| + {
|
| + 'target_name': 'wasm_asmjs_fuzzer',
|
| + 'type': 'executable',
|
| + 'dependencies': [
|
| + 'wasm_asmjs_fuzzer_lib',
|
| + ],
|
| + 'include_dirs': [
|
| + '../..',
|
| + ],
|
| + 'sources': [
|
| + 'fuzzer.cc',
|
| + ],
|
| + },
|
| + {
|
| + 'target_name': 'wasm_asmjs_fuzzer_lib',
|
| + 'type': 'static_library',
|
| + 'dependencies': [
|
| + 'fuzzer_support',
|
| + ],
|
| + 'include_dirs': [
|
| + '../..',
|
| + ],
|
| + 'sources': [ ### gcmole(all) ###
|
| + 'wasm-asmjs.cc',
|
| + ],
|
| + },
|
| + {
|
| 'target_name': 'fuzzer_support',
|
| 'type': 'static_library',
|
| 'dependencies': [
|
|
|