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 1491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1502 "src/wasm/ast-decoder.cc", | 1502 "src/wasm/ast-decoder.cc", |
1503 "src/wasm/ast-decoder.h", | 1503 "src/wasm/ast-decoder.h", |
1504 "src/wasm/decoder.h", | 1504 "src/wasm/decoder.h", |
1505 "src/wasm/encoder.cc", | 1505 "src/wasm/encoder.cc", |
1506 "src/wasm/encoder.h", | 1506 "src/wasm/encoder.h", |
1507 "src/wasm/leb-helper.h", | 1507 "src/wasm/leb-helper.h", |
1508 "src/wasm/module-decoder.cc", | 1508 "src/wasm/module-decoder.cc", |
1509 "src/wasm/module-decoder.h", | 1509 "src/wasm/module-decoder.h", |
1510 "src/wasm/switch-logic.cc", | 1510 "src/wasm/switch-logic.cc", |
1511 "src/wasm/switch-logic.h", | 1511 "src/wasm/switch-logic.h", |
| 1512 "src/wasm/wasm-debug.cc", |
| 1513 "src/wasm/wasm-debug.h", |
1512 "src/wasm/wasm-external-refs.cc", | 1514 "src/wasm/wasm-external-refs.cc", |
1513 "src/wasm/wasm-external-refs.h", | 1515 "src/wasm/wasm-external-refs.h", |
1514 "src/wasm/wasm-function-name-table.cc", | 1516 "src/wasm/wasm-function-name-table.cc", |
1515 "src/wasm/wasm-function-name-table.h", | 1517 "src/wasm/wasm-function-name-table.h", |
1516 "src/wasm/wasm-interpreter.cc", | 1518 "src/wasm/wasm-interpreter.cc", |
1517 "src/wasm/wasm-interpreter.h", | 1519 "src/wasm/wasm-interpreter.h", |
1518 "src/wasm/wasm-js.cc", | 1520 "src/wasm/wasm-js.cc", |
1519 "src/wasm/wasm-js.h", | 1521 "src/wasm/wasm-js.h", |
1520 "src/wasm/wasm-macro-gen.h", | 1522 "src/wasm/wasm-macro-gen.h", |
1521 "src/wasm/wasm-module.cc", | 1523 "src/wasm/wasm-module.cc", |
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2293 | 2295 |
2294 deps = [ | 2296 deps = [ |
2295 ":fuzzer_support", | 2297 ":fuzzer_support", |
2296 ] | 2298 ] |
2297 | 2299 |
2298 configs = [ ":internal_config" ] | 2300 configs = [ ":internal_config" ] |
2299 } | 2301 } |
2300 | 2302 |
2301 v8_fuzzer("wasm_asmjs_fuzzer") { | 2303 v8_fuzzer("wasm_asmjs_fuzzer") { |
2302 } | 2304 } |
OLD | NEW |