| 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 1678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1689 "src/version.cc", | 1689 "src/version.cc", |
| 1690 "src/version.h", | 1690 "src/version.h", |
| 1691 "src/vm-state-inl.h", | 1691 "src/vm-state-inl.h", |
| 1692 "src/vm-state.h", | 1692 "src/vm-state.h", |
| 1693 "src/wasm/ast-decoder.cc", | 1693 "src/wasm/ast-decoder.cc", |
| 1694 "src/wasm/ast-decoder.h", | 1694 "src/wasm/ast-decoder.h", |
| 1695 "src/wasm/decoder.h", | 1695 "src/wasm/decoder.h", |
| 1696 "src/wasm/leb-helper.h", | 1696 "src/wasm/leb-helper.h", |
| 1697 "src/wasm/module-decoder.cc", | 1697 "src/wasm/module-decoder.cc", |
| 1698 "src/wasm/module-decoder.h", | 1698 "src/wasm/module-decoder.h", |
| 1699 "src/wasm/signature-map.cc", |
| 1700 "src/wasm/signature-map.h", |
| 1699 "src/wasm/wasm-debug.cc", | 1701 "src/wasm/wasm-debug.cc", |
| 1700 "src/wasm/wasm-debug.h", | 1702 "src/wasm/wasm-debug.h", |
| 1701 "src/wasm/wasm-external-refs.cc", | 1703 "src/wasm/wasm-external-refs.cc", |
| 1702 "src/wasm/wasm-external-refs.h", | 1704 "src/wasm/wasm-external-refs.h", |
| 1703 "src/wasm/wasm-function-name-table.cc", | 1705 "src/wasm/wasm-function-name-table.cc", |
| 1704 "src/wasm/wasm-function-name-table.h", | 1706 "src/wasm/wasm-function-name-table.h", |
| 1705 "src/wasm/wasm-interpreter.cc", | 1707 "src/wasm/wasm-interpreter.cc", |
| 1706 "src/wasm/wasm-interpreter.h", | 1708 "src/wasm/wasm-interpreter.h", |
| 1707 "src/wasm/wasm-js.cc", | 1709 "src/wasm/wasm-js.cc", |
| 1708 "src/wasm/wasm-js.h", | 1710 "src/wasm/wasm-js.h", |
| (...skipping 1269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2978 ] | 2980 ] |
| 2979 | 2981 |
| 2980 configs = [ | 2982 configs = [ |
| 2981 ":external_config", | 2983 ":external_config", |
| 2982 ":internal_config_base", | 2984 ":internal_config_base", |
| 2983 ] | 2985 ] |
| 2984 } | 2986 } |
| 2985 | 2987 |
| 2986 v8_fuzzer("wasm_data_section_fuzzer") { | 2988 v8_fuzzer("wasm_data_section_fuzzer") { |
| 2987 } | 2989 } |
| OLD | NEW |