OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium 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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
7 import("//build/config/dcheck_always_on.gni") | 7 import("//build/config/dcheck_always_on.gni") |
8 import("//build/config/mips.gni") | 8 import("//build/config/mips.gni") |
9 import("//build/config/sanitizers/sanitizers.gni") | 9 import("//build/config/sanitizers/sanitizers.gni") |
10 | 10 |
(...skipping 1460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1471 "src/wasm/ast-decoder.cc", | 1471 "src/wasm/ast-decoder.cc", |
1472 "src/wasm/ast-decoder.h", | 1472 "src/wasm/ast-decoder.h", |
1473 "src/wasm/decoder.h", | 1473 "src/wasm/decoder.h", |
1474 "src/wasm/encoder.cc", | 1474 "src/wasm/encoder.cc", |
1475 "src/wasm/encoder.h", | 1475 "src/wasm/encoder.h", |
1476 "src/wasm/leb-helper.h", | 1476 "src/wasm/leb-helper.h", |
1477 "src/wasm/module-decoder.cc", | 1477 "src/wasm/module-decoder.cc", |
1478 "src/wasm/module-decoder.h", | 1478 "src/wasm/module-decoder.h", |
1479 "src/wasm/switch-logic.cc", | 1479 "src/wasm/switch-logic.cc", |
1480 "src/wasm/switch-logic.h", | 1480 "src/wasm/switch-logic.h", |
| 1481 "src/wasm/wasm-debug.cc", |
| 1482 "src/wasm/wasm-debug.h", |
1481 "src/wasm/wasm-external-refs.cc", | 1483 "src/wasm/wasm-external-refs.cc", |
1482 "src/wasm/wasm-external-refs.h", | 1484 "src/wasm/wasm-external-refs.h", |
1483 "src/wasm/wasm-function-name-table.cc", | 1485 "src/wasm/wasm-function-name-table.cc", |
1484 "src/wasm/wasm-function-name-table.h", | 1486 "src/wasm/wasm-function-name-table.h", |
1485 "src/wasm/wasm-interpreter.cc", | 1487 "src/wasm/wasm-interpreter.cc", |
1486 "src/wasm/wasm-interpreter.h", | 1488 "src/wasm/wasm-interpreter.h", |
1487 "src/wasm/wasm-js.cc", | 1489 "src/wasm/wasm-js.cc", |
1488 "src/wasm/wasm-js.h", | 1490 "src/wasm/wasm-js.h", |
1489 "src/wasm/wasm-macro-gen.h", | 1491 "src/wasm/wasm-macro-gen.h", |
1490 "src/wasm/wasm-module.cc", | 1492 "src/wasm/wasm-module.cc", |
(...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2247 | 2249 |
2248 deps = [ | 2250 deps = [ |
2249 ":fuzzer_support", | 2251 ":fuzzer_support", |
2250 ] | 2252 ] |
2251 | 2253 |
2252 configs = [ ":internal_config" ] | 2254 configs = [ ":internal_config" ] |
2253 } | 2255 } |
2254 | 2256 |
2255 v8_fuzzer("wasm_asmjs_fuzzer") { | 2257 v8_fuzzer("wasm_asmjs_fuzzer") { |
2256 } | 2258 } |
OLD | NEW |