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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 } |
OLD | NEW |