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 1716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1727 "src/version.h", | 1727 "src/version.h", |
1728 "src/vm-state-inl.h", | 1728 "src/vm-state-inl.h", |
1729 "src/vm-state.h", | 1729 "src/vm-state.h", |
1730 "src/wasm/ast-decoder.cc", | 1730 "src/wasm/ast-decoder.cc", |
1731 "src/wasm/ast-decoder.h", | 1731 "src/wasm/ast-decoder.h", |
1732 "src/wasm/decoder.h", | 1732 "src/wasm/decoder.h", |
1733 "src/wasm/leb-helper.h", | 1733 "src/wasm/leb-helper.h", |
1734 "src/wasm/managed.h", | 1734 "src/wasm/managed.h", |
1735 "src/wasm/module-decoder.cc", | 1735 "src/wasm/module-decoder.cc", |
1736 "src/wasm/module-decoder.h", | 1736 "src/wasm/module-decoder.h", |
| 1737 "src/wasm/s-expr.cc", |
| 1738 "src/wasm/s-expr.h", |
1737 "src/wasm/signature-map.cc", | 1739 "src/wasm/signature-map.cc", |
1738 "src/wasm/signature-map.h", | 1740 "src/wasm/signature-map.h", |
1739 "src/wasm/wasm-debug.cc", | 1741 "src/wasm/wasm-debug.cc", |
1740 "src/wasm/wasm-external-refs.cc", | 1742 "src/wasm/wasm-external-refs.cc", |
1741 "src/wasm/wasm-external-refs.h", | 1743 "src/wasm/wasm-external-refs.h", |
1742 "src/wasm/wasm-interpreter.cc", | 1744 "src/wasm/wasm-interpreter.cc", |
1743 "src/wasm/wasm-interpreter.h", | 1745 "src/wasm/wasm-interpreter.h", |
1744 "src/wasm/wasm-js.cc", | 1746 "src/wasm/wasm-js.cc", |
1745 "src/wasm/wasm-js.h", | 1747 "src/wasm/wasm-js.h", |
1746 "src/wasm/wasm-macro-gen.h", | 1748 "src/wasm/wasm-macro-gen.h", |
(...skipping 1254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3001 ] | 3003 ] |
3002 | 3004 |
3003 configs = [ | 3005 configs = [ |
3004 ":external_config", | 3006 ":external_config", |
3005 ":internal_config_base", | 3007 ":internal_config_base", |
3006 ] | 3008 ] |
3007 } | 3009 } |
3008 | 3010 |
3009 v8_fuzzer("wasm_data_section_fuzzer") { | 3011 v8_fuzzer("wasm_data_section_fuzzer") { |
3010 } | 3012 } |
OLD | NEW |