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

Side by Side Diff: BUILD.gn

Issue 2490663002: [wasm] Move all heap-allocated WASM structures into wasm-objects.h. (Closed)
Patch Set: [wasm] Move all heap-allocated WASM structures into wasm-objects.h. 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') | no next file with comments »
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 1705 matching lines...) Expand 10 before | Expand all | Expand 10 after
1716 "src/wasm/ast-decoder.cc", 1716 "src/wasm/ast-decoder.cc",
1717 "src/wasm/ast-decoder.h", 1717 "src/wasm/ast-decoder.h",
1718 "src/wasm/decoder.h", 1718 "src/wasm/decoder.h",
1719 "src/wasm/leb-helper.h", 1719 "src/wasm/leb-helper.h",
1720 "src/wasm/managed.h", 1720 "src/wasm/managed.h",
1721 "src/wasm/module-decoder.cc", 1721 "src/wasm/module-decoder.cc",
1722 "src/wasm/module-decoder.h", 1722 "src/wasm/module-decoder.h",
1723 "src/wasm/signature-map.cc", 1723 "src/wasm/signature-map.cc",
1724 "src/wasm/signature-map.h", 1724 "src/wasm/signature-map.h",
1725 "src/wasm/wasm-debug.cc", 1725 "src/wasm/wasm-debug.cc",
1726 "src/wasm/wasm-debug.h",
1727 "src/wasm/wasm-external-refs.cc", 1726 "src/wasm/wasm-external-refs.cc",
1728 "src/wasm/wasm-external-refs.h", 1727 "src/wasm/wasm-external-refs.h",
1729 "src/wasm/wasm-interpreter.cc", 1728 "src/wasm/wasm-interpreter.cc",
1730 "src/wasm/wasm-interpreter.h", 1729 "src/wasm/wasm-interpreter.h",
1731 "src/wasm/wasm-js.cc", 1730 "src/wasm/wasm-js.cc",
1732 "src/wasm/wasm-js.h", 1731 "src/wasm/wasm-js.h",
1733 "src/wasm/wasm-macro-gen.h", 1732 "src/wasm/wasm-macro-gen.h",
1734 "src/wasm/wasm-module-builder.cc", 1733 "src/wasm/wasm-module-builder.cc",
1735 "src/wasm/wasm-module-builder.h", 1734 "src/wasm/wasm-module-builder.h",
1736 "src/wasm/wasm-module.cc", 1735 "src/wasm/wasm-module.cc",
1737 "src/wasm/wasm-module.h", 1736 "src/wasm/wasm-module.h",
1737 "src/wasm/wasm-objects.cc",
1738 "src/wasm/wasm-objects.h",
1738 "src/wasm/wasm-opcodes.cc", 1739 "src/wasm/wasm-opcodes.cc",
1739 "src/wasm/wasm-opcodes.h", 1740 "src/wasm/wasm-opcodes.h",
1740 "src/wasm/wasm-result.cc", 1741 "src/wasm/wasm-result.cc",
1741 "src/wasm/wasm-result.h", 1742 "src/wasm/wasm-result.h",
1742 "src/zone/accounting-allocator.cc", 1743 "src/zone/accounting-allocator.cc",
1743 "src/zone/accounting-allocator.h", 1744 "src/zone/accounting-allocator.h",
1744 "src/zone/zone-allocator.h", 1745 "src/zone/zone-allocator.h",
1745 "src/zone/zone-allocator.h", 1746 "src/zone/zone-allocator.h",
1746 "src/zone/zone-chunk-list.h", 1747 "src/zone/zone-chunk-list.h",
1747 "src/zone/zone-containers.h", 1748 "src/zone/zone-containers.h",
(...skipping 1234 matching lines...) Expand 10 before | Expand all | Expand 10 after
2982 ] 2983 ]
2983 2984
2984 configs = [ 2985 configs = [
2985 ":external_config", 2986 ":external_config",
2986 ":internal_config_base", 2987 ":internal_config_base",
2987 ] 2988 ]
2988 } 2989 }
2989 2990
2990 v8_fuzzer("wasm_data_section_fuzzer") { 2991 v8_fuzzer("wasm_data_section_fuzzer") {
2991 } 2992 }
OLDNEW
« no previous file with comments | « no previous file | src/api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698