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

Side by Side Diff: BUILD.gn

Issue 2383463002: [wasm] Rename encoder.(cc,h) to wasm-module-builder.(cc,h) (Closed)
Patch Set: Created 4 years, 2 months 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/asmjs/asm-js.cc » ('j') | test/unittests/wasm/wasm-module-builder-unittest.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 1657 matching lines...) Expand 10 before | Expand all | Expand 10 after
1668 "src/value-serializer.cc", 1668 "src/value-serializer.cc",
1669 "src/value-serializer.h", 1669 "src/value-serializer.h",
1670 "src/vector.h", 1670 "src/vector.h",
1671 "src/version.cc", 1671 "src/version.cc",
1672 "src/version.h", 1672 "src/version.h",
1673 "src/vm-state-inl.h", 1673 "src/vm-state-inl.h",
1674 "src/vm-state.h", 1674 "src/vm-state.h",
1675 "src/wasm/ast-decoder.cc", 1675 "src/wasm/ast-decoder.cc",
1676 "src/wasm/ast-decoder.h", 1676 "src/wasm/ast-decoder.h",
1677 "src/wasm/decoder.h", 1677 "src/wasm/decoder.h",
1678 "src/wasm/encoder.cc",
1679 "src/wasm/encoder.h",
1680 "src/wasm/leb-helper.h", 1678 "src/wasm/leb-helper.h",
1681 "src/wasm/module-decoder.cc", 1679 "src/wasm/module-decoder.cc",
1682 "src/wasm/module-decoder.h", 1680 "src/wasm/module-decoder.h",
1683 "src/wasm/switch-logic.cc", 1681 "src/wasm/switch-logic.cc",
1684 "src/wasm/switch-logic.h", 1682 "src/wasm/switch-logic.h",
1685 "src/wasm/wasm-debug.cc", 1683 "src/wasm/wasm-debug.cc",
1686 "src/wasm/wasm-debug.h", 1684 "src/wasm/wasm-debug.h",
1687 "src/wasm/wasm-external-refs.cc", 1685 "src/wasm/wasm-external-refs.cc",
1688 "src/wasm/wasm-external-refs.h", 1686 "src/wasm/wasm-external-refs.h",
1689 "src/wasm/wasm-function-name-table.cc", 1687 "src/wasm/wasm-function-name-table.cc",
1690 "src/wasm/wasm-function-name-table.h", 1688 "src/wasm/wasm-function-name-table.h",
1691 "src/wasm/wasm-interpreter.cc", 1689 "src/wasm/wasm-interpreter.cc",
1692 "src/wasm/wasm-interpreter.h", 1690 "src/wasm/wasm-interpreter.h",
1693 "src/wasm/wasm-js.cc", 1691 "src/wasm/wasm-js.cc",
1694 "src/wasm/wasm-js.h", 1692 "src/wasm/wasm-js.h",
1695 "src/wasm/wasm-macro-gen.h", 1693 "src/wasm/wasm-macro-gen.h",
1694 "src/wasm/wasm-module-builder.cc",
1695 "src/wasm/wasm-module-builder.h",
1696 "src/wasm/wasm-module.cc", 1696 "src/wasm/wasm-module.cc",
1697 "src/wasm/wasm-module.h", 1697 "src/wasm/wasm-module.h",
1698 "src/wasm/wasm-opcodes.cc", 1698 "src/wasm/wasm-opcodes.cc",
1699 "src/wasm/wasm-opcodes.h", 1699 "src/wasm/wasm-opcodes.h",
1700 "src/wasm/wasm-result.cc", 1700 "src/wasm/wasm-result.cc",
1701 "src/wasm/wasm-result.h", 1701 "src/wasm/wasm-result.h",
1702 "src/zone/accounting-allocator.cc", 1702 "src/zone/accounting-allocator.cc",
1703 "src/zone/accounting-allocator.h", 1703 "src/zone/accounting-allocator.h",
1704 "src/zone/zone-allocator.h", 1704 "src/zone/zone-allocator.h",
1705 "src/zone/zone-allocator.h", 1705 "src/zone/zone-allocator.h",
(...skipping 1225 matching lines...) Expand 10 before | Expand all | Expand 10 after
2931 ] 2931 ]
2932 2932
2933 configs = [ 2933 configs = [
2934 ":external_config", 2934 ":external_config",
2935 ":internal_config_base", 2935 ":internal_config_base",
2936 ] 2936 ]
2937 } 2937 }
2938 2938
2939 v8_fuzzer("wasm_data_section_fuzzer") { 2939 v8_fuzzer("wasm_data_section_fuzzer") {
2940 } 2940 }
OLDNEW
« no previous file with comments | « no previous file | src/asmjs/asm-js.cc » ('j') | test/unittests/wasm/wasm-module-builder-unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698