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 1273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3094 ] | 3096 ] |
3095 | 3097 |
3096 configs = [ | 3098 configs = [ |
3097 ":external_config", | 3099 ":external_config", |
3098 ":internal_config_base", | 3100 ":internal_config_base", |
3099 ] | 3101 ] |
3100 } | 3102 } |
3101 | 3103 |
3102 v8_fuzzer("wasm_data_section_fuzzer") { | 3104 v8_fuzzer("wasm_data_section_fuzzer") { |
3103 } | 3105 } |
OLD | NEW |