| 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 1790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1801 "src/wasm/decoder.h", | 1801 "src/wasm/decoder.h", |
| 1802 "src/wasm/function-body-decoder-impl.h", | 1802 "src/wasm/function-body-decoder-impl.h", |
| 1803 "src/wasm/function-body-decoder.cc", | 1803 "src/wasm/function-body-decoder.cc", |
| 1804 "src/wasm/function-body-decoder.h", | 1804 "src/wasm/function-body-decoder.h", |
| 1805 "src/wasm/leb-helper.h", | 1805 "src/wasm/leb-helper.h", |
| 1806 "src/wasm/managed.h", | 1806 "src/wasm/managed.h", |
| 1807 "src/wasm/module-decoder.cc", | 1807 "src/wasm/module-decoder.cc", |
| 1808 "src/wasm/module-decoder.h", | 1808 "src/wasm/module-decoder.h", |
| 1809 "src/wasm/signature-map.cc", | 1809 "src/wasm/signature-map.cc", |
| 1810 "src/wasm/signature-map.h", | 1810 "src/wasm/signature-map.h", |
| 1811 "src/wasm/wasm-code-specialization.cc", |
| 1812 "src/wasm/wasm-code-specialization.h", |
| 1811 "src/wasm/wasm-debug.cc", | 1813 "src/wasm/wasm-debug.cc", |
| 1812 "src/wasm/wasm-external-refs.cc", | 1814 "src/wasm/wasm-external-refs.cc", |
| 1813 "src/wasm/wasm-external-refs.h", | 1815 "src/wasm/wasm-external-refs.h", |
| 1814 "src/wasm/wasm-interpreter.cc", | 1816 "src/wasm/wasm-interpreter.cc", |
| 1815 "src/wasm/wasm-interpreter.h", | 1817 "src/wasm/wasm-interpreter.h", |
| 1816 "src/wasm/wasm-js.cc", | 1818 "src/wasm/wasm-js.cc", |
| 1817 "src/wasm/wasm-js.h", | 1819 "src/wasm/wasm-js.h", |
| 1818 "src/wasm/wasm-limits.h", | 1820 "src/wasm/wasm-limits.h", |
| 1819 "src/wasm/wasm-macro-gen.h", | 1821 "src/wasm/wasm-macro-gen.h", |
| 1820 "src/wasm/wasm-module-builder.cc", | 1822 "src/wasm/wasm-module-builder.cc", |
| (...skipping 1293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3114 ] | 3116 ] |
| 3115 | 3117 |
| 3116 configs = [ | 3118 configs = [ |
| 3117 ":external_config", | 3119 ":external_config", |
| 3118 ":internal_config_base", | 3120 ":internal_config_base", |
| 3119 ] | 3121 ] |
| 3120 } | 3122 } |
| 3121 | 3123 |
| 3122 v8_fuzzer("wasm_compile_fuzzer") { | 3124 v8_fuzzer("wasm_compile_fuzzer") { |
| 3123 } | 3125 } |
| OLD | NEW |