| 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 1726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1737 "src/v8memory.h", | 1737 "src/v8memory.h", |
| 1738 "src/v8threads.cc", | 1738 "src/v8threads.cc", |
| 1739 "src/v8threads.h", | 1739 "src/v8threads.h", |
| 1740 "src/value-serializer.cc", | 1740 "src/value-serializer.cc", |
| 1741 "src/value-serializer.h", | 1741 "src/value-serializer.h", |
| 1742 "src/vector.h", | 1742 "src/vector.h", |
| 1743 "src/version.cc", | 1743 "src/version.cc", |
| 1744 "src/version.h", | 1744 "src/version.h", |
| 1745 "src/vm-state-inl.h", | 1745 "src/vm-state-inl.h", |
| 1746 "src/vm-state.h", | 1746 "src/vm-state.h", |
| 1747 "src/wasm/ast-decoder.cc", | |
| 1748 "src/wasm/ast-decoder.h", | |
| 1749 "src/wasm/decoder.h", | 1747 "src/wasm/decoder.h", |
| 1748 "src/wasm/function-body-decoder.cc", |
| 1749 "src/wasm/function-body-decoder.h", |
| 1750 "src/wasm/leb-helper.h", | 1750 "src/wasm/leb-helper.h", |
| 1751 "src/wasm/managed.h", | 1751 "src/wasm/managed.h", |
| 1752 "src/wasm/module-decoder.cc", | 1752 "src/wasm/module-decoder.cc", |
| 1753 "src/wasm/module-decoder.h", | 1753 "src/wasm/module-decoder.h", |
| 1754 "src/wasm/signature-map.cc", | 1754 "src/wasm/signature-map.cc", |
| 1755 "src/wasm/signature-map.h", | 1755 "src/wasm/signature-map.h", |
| 1756 "src/wasm/wasm-debug.cc", | 1756 "src/wasm/wasm-debug.cc", |
| 1757 "src/wasm/wasm-external-refs.cc", | 1757 "src/wasm/wasm-external-refs.cc", |
| 1758 "src/wasm/wasm-external-refs.h", | 1758 "src/wasm/wasm-external-refs.h", |
| 1759 "src/wasm/wasm-interpreter.cc", | 1759 "src/wasm/wasm-interpreter.cc", |
| (...skipping 1244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3004 ] | 3004 ] |
| 3005 | 3005 |
| 3006 configs = [ | 3006 configs = [ |
| 3007 ":external_config", | 3007 ":external_config", |
| 3008 ":internal_config_base", | 3008 ":internal_config_base", |
| 3009 ] | 3009 ] |
| 3010 } | 3010 } |
| 3011 | 3011 |
| 3012 v8_fuzzer("wasm_data_section_fuzzer") { | 3012 v8_fuzzer("wasm_data_section_fuzzer") { |
| 3013 } | 3013 } |
| OLD | NEW |