| 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 1695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1706 "src/value-serializer.h", | 1706 "src/value-serializer.h", |
| 1707 "src/vector.h", | 1707 "src/vector.h", |
| 1708 "src/version.cc", | 1708 "src/version.cc", |
| 1709 "src/version.h", | 1709 "src/version.h", |
| 1710 "src/vm-state-inl.h", | 1710 "src/vm-state-inl.h", |
| 1711 "src/vm-state.h", | 1711 "src/vm-state.h", |
| 1712 "src/wasm/ast-decoder.cc", | 1712 "src/wasm/ast-decoder.cc", |
| 1713 "src/wasm/ast-decoder.h", | 1713 "src/wasm/ast-decoder.h", |
| 1714 "src/wasm/decoder.h", | 1714 "src/wasm/decoder.h", |
| 1715 "src/wasm/leb-helper.h", | 1715 "src/wasm/leb-helper.h", |
| 1716 "src/wasm/managed.h", |
| 1716 "src/wasm/module-decoder.cc", | 1717 "src/wasm/module-decoder.cc", |
| 1717 "src/wasm/module-decoder.h", | 1718 "src/wasm/module-decoder.h", |
| 1718 "src/wasm/signature-map.cc", | 1719 "src/wasm/signature-map.cc", |
| 1719 "src/wasm/signature-map.h", | 1720 "src/wasm/signature-map.h", |
| 1720 "src/wasm/wasm-debug.cc", | 1721 "src/wasm/wasm-debug.cc", |
| 1721 "src/wasm/wasm-debug.h", | 1722 "src/wasm/wasm-debug.h", |
| 1722 "src/wasm/wasm-external-refs.cc", | 1723 "src/wasm/wasm-external-refs.cc", |
| 1723 "src/wasm/wasm-external-refs.h", | 1724 "src/wasm/wasm-external-refs.h", |
| 1724 "src/wasm/wasm-function-name-table.cc", | 1725 "src/wasm/wasm-function-name-table.cc", |
| 1725 "src/wasm/wasm-function-name-table.h", | 1726 "src/wasm/wasm-function-name-table.h", |
| (...skipping 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2961 ] | 2962 ] |
| 2962 | 2963 |
| 2963 configs = [ | 2964 configs = [ |
| 2964 ":external_config", | 2965 ":external_config", |
| 2965 ":internal_config_base", | 2966 ":internal_config_base", |
| 2966 ] | 2967 ] |
| 2967 } | 2968 } |
| 2968 | 2969 |
| 2969 v8_fuzzer("wasm_data_section_fuzzer") { | 2970 v8_fuzzer("wasm_data_section_fuzzer") { |
| 2970 } | 2971 } |
| OLD | NEW |