| 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': ['../../build/toolchain.gypi', '../../build/features.gypi'], | 9 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'], |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 'fuzzer_support', | 80 'fuzzer_support', |
| 81 ], | 81 ], |
| 82 'include_dirs': [ | 82 'include_dirs': [ |
| 83 '../..', | 83 '../..', |
| 84 ], | 84 ], |
| 85 'sources': [ ### gcmole(all) ### | 85 'sources': [ ### gcmole(all) ### |
| 86 'regexp.cc', | 86 'regexp.cc', |
| 87 ], | 87 ], |
| 88 }, | 88 }, |
| 89 { | 89 { |
| 90 'target_name': 'wasm_fuzzer', |
| 91 'type': 'executable', |
| 92 'dependencies': [ |
| 93 'wasm_fuzzer_lib', |
| 94 ], |
| 95 'include_dirs': [ |
| 96 '../..', |
| 97 ], |
| 98 'sources': [ |
| 99 'fuzzer.cc', |
| 100 ], |
| 101 }, |
| 102 { |
| 103 'target_name': 'wasm_fuzzer_lib', |
| 104 'type': 'static_library', |
| 105 'dependencies': [ |
| 106 'fuzzer_support', |
| 107 ], |
| 108 'include_dirs': [ |
| 109 '../..', |
| 110 ], |
| 111 'sources': [ ### gcmole(all) ### |
| 112 'wasm.cc', |
| 113 ], |
| 114 }, |
| 115 { |
| 116 'target_name': 'wasm_asmjs_fuzzer', |
| 117 'type': 'executable', |
| 118 'dependencies': [ |
| 119 'wasm_asmjs_fuzzer_lib', |
| 120 ], |
| 121 'include_dirs': [ |
| 122 '../..', |
| 123 ], |
| 124 'sources': [ |
| 125 'fuzzer.cc', |
| 126 ], |
| 127 }, |
| 128 { |
| 129 'target_name': 'wasm_asmjs_fuzzer_lib', |
| 130 'type': 'static_library', |
| 131 'dependencies': [ |
| 132 'fuzzer_support', |
| 133 ], |
| 134 'include_dirs': [ |
| 135 '../..', |
| 136 ], |
| 137 'sources': [ ### gcmole(all) ### |
| 138 'wasm-asmjs.cc', |
| 139 ], |
| 140 }, |
| 141 { |
| 90 'target_name': 'fuzzer_support', | 142 'target_name': 'fuzzer_support', |
| 91 'type': 'static_library', | 143 'type': 'static_library', |
| 92 'dependencies': [ | 144 'dependencies': [ |
| 93 '../../tools/gyp/v8.gyp:v8_libplatform', | 145 '../../tools/gyp/v8.gyp:v8_libplatform', |
| 94 ], | 146 ], |
| 95 'include_dirs': [ | 147 'include_dirs': [ |
| 96 '../..', | 148 '../..', |
| 97 ], | 149 ], |
| 98 'sources': [ ### gcmole(all) ### | 150 'sources': [ ### gcmole(all) ### |
| 99 'fuzzer-support.cc', | 151 'fuzzer-support.cc', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 125 '../../build/isolate.gypi', | 177 '../../build/isolate.gypi', |
| 126 ], | 178 ], |
| 127 'sources': [ | 179 'sources': [ |
| 128 'fuzzer.isolate', | 180 'fuzzer.isolate', |
| 129 ], | 181 ], |
| 130 }, | 182 }, |
| 131 ], | 183 ], |
| 132 }], | 184 }], |
| 133 ], | 185 ], |
| 134 } | 186 } |
| OLD | NEW |