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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 'include_dirs': [ | 164 'include_dirs': [ |
165 '../..', | 165 '../..', |
166 ], | 166 ], |
167 'sources': [ ### gcmole(all) ### | 167 'sources': [ ### gcmole(all) ### |
168 'wasm-code.cc', | 168 'wasm-code.cc', |
169 '../cctest/wasm/wasm-module-runner.cc', | 169 '../cctest/wasm/wasm-module-runner.cc', |
170 '../cctest/wasm/wasm-module-runner.h', | 170 '../cctest/wasm/wasm-module-runner.h', |
171 ], | 171 ], |
172 }, | 172 }, |
173 { | 173 { |
| 174 'target_name': 'v8_simple_wasm_section_fuzzer', |
| 175 'type': 'executable', |
| 176 'dependencies': [ |
| 177 'wasm_section_fuzzer_lib', |
| 178 ], |
| 179 'include_dirs': [ |
| 180 '../..', |
| 181 ], |
| 182 'sources': [ |
| 183 'fuzzer.cc', |
| 184 ], |
| 185 }, |
| 186 { |
| 187 'target_name': 'wasm_section_fuzzer_lib', |
| 188 'type': 'static_library', |
| 189 'dependencies': [ |
| 190 'fuzzer_support', |
| 191 ], |
| 192 'include_dirs': [ |
| 193 '../..', |
| 194 ], |
| 195 'sources': [ ### gcmole(all) ### |
| 196 'wasm-section.cc', |
| 197 '../cctest/wasm/wasm-module-runner.cc', |
| 198 '../cctest/wasm/wasm-module-runner.h', |
| 199 '../fuzzer/wasm-section-fuzzers.cc', |
| 200 '../fuzzer/wasm-section-fuzzers.h', |
| 201 ], |
| 202 }, |
| 203 { |
174 'target_name': 'fuzzer_support', | 204 'target_name': 'fuzzer_support', |
175 'type': 'static_library', | 205 'type': 'static_library', |
176 'dependencies': [ | 206 'dependencies': [ |
177 '../../src/v8.gyp:v8_libplatform', | 207 '../../src/v8.gyp:v8_libplatform', |
178 ], | 208 ], |
179 'include_dirs': [ | 209 'include_dirs': [ |
180 '../..', | 210 '../..', |
181 ], | 211 ], |
182 'sources': [ ### gcmole(all) ### | 212 'sources': [ ### gcmole(all) ### |
183 'fuzzer-support.cc', | 213 'fuzzer-support.cc', |
(...skipping 27 matching lines...) Expand all Loading... |
211 '../../gypfiles/isolate.gypi', | 241 '../../gypfiles/isolate.gypi', |
212 ], | 242 ], |
213 'sources': [ | 243 'sources': [ |
214 'fuzzer.isolate', | 244 'fuzzer.isolate', |
215 ], | 245 ], |
216 }, | 246 }, |
217 ], | 247 ], |
218 }], | 248 }], |
219 ], | 249 ], |
220 } | 250 } |
OLD | NEW |