| 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 1730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1741 "src/wasm/module-decoder.h", | 1741 "src/wasm/module-decoder.h", |
| 1742 "src/wasm/signature-map.cc", | 1742 "src/wasm/signature-map.cc", |
| 1743 "src/wasm/signature-map.h", | 1743 "src/wasm/signature-map.h", |
| 1744 "src/wasm/wasm-debug.cc", | 1744 "src/wasm/wasm-debug.cc", |
| 1745 "src/wasm/wasm-external-refs.cc", | 1745 "src/wasm/wasm-external-refs.cc", |
| 1746 "src/wasm/wasm-external-refs.h", | 1746 "src/wasm/wasm-external-refs.h", |
| 1747 "src/wasm/wasm-interpreter.cc", | 1747 "src/wasm/wasm-interpreter.cc", |
| 1748 "src/wasm/wasm-interpreter.h", | 1748 "src/wasm/wasm-interpreter.h", |
| 1749 "src/wasm/wasm-js.cc", | 1749 "src/wasm/wasm-js.cc", |
| 1750 "src/wasm/wasm-js.h", | 1750 "src/wasm/wasm-js.h", |
| 1751 "src/wasm/wasm-limits.h", |
| 1751 "src/wasm/wasm-macro-gen.h", | 1752 "src/wasm/wasm-macro-gen.h", |
| 1752 "src/wasm/wasm-module-builder.cc", | 1753 "src/wasm/wasm-module-builder.cc", |
| 1753 "src/wasm/wasm-module-builder.h", | 1754 "src/wasm/wasm-module-builder.h", |
| 1754 "src/wasm/wasm-module.cc", | 1755 "src/wasm/wasm-module.cc", |
| 1755 "src/wasm/wasm-module.h", | 1756 "src/wasm/wasm-module.h", |
| 1756 "src/wasm/wasm-objects.cc", | 1757 "src/wasm/wasm-objects.cc", |
| 1757 "src/wasm/wasm-objects.h", | 1758 "src/wasm/wasm-objects.h", |
| 1758 "src/wasm/wasm-opcodes.cc", | 1759 "src/wasm/wasm-opcodes.cc", |
| 1759 "src/wasm/wasm-opcodes.h", | 1760 "src/wasm/wasm-opcodes.h", |
| 1760 "src/wasm/wasm-result.cc", | 1761 "src/wasm/wasm-result.cc", |
| (...skipping 1230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2991 ] | 2992 ] |
| 2992 | 2993 |
| 2993 configs = [ | 2994 configs = [ |
| 2994 ":external_config", | 2995 ":external_config", |
| 2995 ":internal_config_base", | 2996 ":internal_config_base", |
| 2996 ] | 2997 ] |
| 2997 } | 2998 } |
| 2998 | 2999 |
| 2999 v8_fuzzer("wasm_data_section_fuzzer") { | 3000 v8_fuzzer("wasm_data_section_fuzzer") { |
| 3000 } | 3001 } |
| OLD | NEW |