Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(224)

Side by Side Diff: BUILD.gn

Issue 2490663002: [wasm] Move all heap-allocated WASM structures into wasm-objects.h. (Closed)
Patch Set: More dead code Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/api.cc » ('j') | src/wasm/wasm-module.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1702 matching lines...) Expand 10 before | Expand all | Expand 10 after
1713 "src/wasm/ast-decoder.cc", 1713 "src/wasm/ast-decoder.cc",
1714 "src/wasm/ast-decoder.h", 1714 "src/wasm/ast-decoder.h",
1715 "src/wasm/decoder.h", 1715 "src/wasm/decoder.h",
1716 "src/wasm/leb-helper.h", 1716 "src/wasm/leb-helper.h",
1717 "src/wasm/managed.h", 1717 "src/wasm/managed.h",
1718 "src/wasm/module-decoder.cc", 1718 "src/wasm/module-decoder.cc",
1719 "src/wasm/module-decoder.h", 1719 "src/wasm/module-decoder.h",
1720 "src/wasm/signature-map.cc", 1720 "src/wasm/signature-map.cc",
1721 "src/wasm/signature-map.h", 1721 "src/wasm/signature-map.h",
1722 "src/wasm/wasm-debug.cc", 1722 "src/wasm/wasm-debug.cc",
1723 "src/wasm/wasm-debug.h",
1724 "src/wasm/wasm-external-refs.cc", 1723 "src/wasm/wasm-external-refs.cc",
1725 "src/wasm/wasm-external-refs.h", 1724 "src/wasm/wasm-external-refs.h",
1726 "src/wasm/wasm-interpreter.cc", 1725 "src/wasm/wasm-interpreter.cc",
1727 "src/wasm/wasm-interpreter.h", 1726 "src/wasm/wasm-interpreter.h",
1728 "src/wasm/wasm-js.cc", 1727 "src/wasm/wasm-js.cc",
1729 "src/wasm/wasm-js.h", 1728 "src/wasm/wasm-js.h",
1730 "src/wasm/wasm-macro-gen.h", 1729 "src/wasm/wasm-macro-gen.h",
1731 "src/wasm/wasm-module-builder.cc", 1730 "src/wasm/wasm-module-builder.cc",
1732 "src/wasm/wasm-module-builder.h", 1731 "src/wasm/wasm-module-builder.h",
1733 "src/wasm/wasm-module.cc", 1732 "src/wasm/wasm-module.cc",
1734 "src/wasm/wasm-module.h", 1733 "src/wasm/wasm-module.h",
1734 "src/wasm/wasm-objects.cc",
1735 "src/wasm/wasm-objects.h",
1735 "src/wasm/wasm-opcodes.cc", 1736 "src/wasm/wasm-opcodes.cc",
1736 "src/wasm/wasm-opcodes.h", 1737 "src/wasm/wasm-opcodes.h",
1737 "src/wasm/wasm-result.cc", 1738 "src/wasm/wasm-result.cc",
1738 "src/wasm/wasm-result.h", 1739 "src/wasm/wasm-result.h",
1739 "src/zone/accounting-allocator.cc", 1740 "src/zone/accounting-allocator.cc",
1740 "src/zone/accounting-allocator.h", 1741 "src/zone/accounting-allocator.h",
1741 "src/zone/zone-allocator.h", 1742 "src/zone/zone-allocator.h",
1742 "src/zone/zone-allocator.h", 1743 "src/zone/zone-allocator.h",
1743 "src/zone/zone-chunk-list.h", 1744 "src/zone/zone-chunk-list.h",
1744 "src/zone/zone-containers.h", 1745 "src/zone/zone-containers.h",
(...skipping 1234 matching lines...) Expand 10 before | Expand all | Expand 10 after
2979 ] 2980 ]
2980 2981
2981 configs = [ 2982 configs = [
2982 ":external_config", 2983 ":external_config",
2983 ":internal_config_base", 2984 ":internal_config_base",
2984 ] 2985 ]
2985 } 2986 }
2986 2987
2987 v8_fuzzer("wasm_data_section_fuzzer") { 2988 v8_fuzzer("wasm_data_section_fuzzer") {
2988 } 2989 }
OLDNEW
« no previous file with comments | « no previous file | src/api.cc » ('j') | src/wasm/wasm-module.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698