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

Side by Side Diff: BUILD.gn

Issue 2409173005: [wasm] Add a Managed<T> wrapper class for allocating C++ classes that are deleted when the wrapper … (Closed)
Patch Set: [wasm] Add a Managed<T> wrapper class for allocating C++ classes that are garbage collected. 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/v8.gyp » ('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 1695 matching lines...) Expand 10 before | Expand all | Expand 10 after
1706 "src/value-serializer.h", 1706 "src/value-serializer.h",
1707 "src/vector.h", 1707 "src/vector.h",
1708 "src/version.cc", 1708 "src/version.cc",
1709 "src/version.h", 1709 "src/version.h",
1710 "src/vm-state-inl.h", 1710 "src/vm-state-inl.h",
1711 "src/vm-state.h", 1711 "src/vm-state.h",
1712 "src/wasm/ast-decoder.cc", 1712 "src/wasm/ast-decoder.cc",
1713 "src/wasm/ast-decoder.h", 1713 "src/wasm/ast-decoder.h",
1714 "src/wasm/decoder.h", 1714 "src/wasm/decoder.h",
1715 "src/wasm/leb-helper.h", 1715 "src/wasm/leb-helper.h",
1716 "src/wasm/managed.h",
1716 "src/wasm/module-decoder.cc", 1717 "src/wasm/module-decoder.cc",
1717 "src/wasm/module-decoder.h", 1718 "src/wasm/module-decoder.h",
1718 "src/wasm/signature-map.cc", 1719 "src/wasm/signature-map.cc",
1719 "src/wasm/signature-map.h", 1720 "src/wasm/signature-map.h",
1720 "src/wasm/wasm-debug.cc", 1721 "src/wasm/wasm-debug.cc",
1721 "src/wasm/wasm-debug.h", 1722 "src/wasm/wasm-debug.h",
1722 "src/wasm/wasm-external-refs.cc", 1723 "src/wasm/wasm-external-refs.cc",
1723 "src/wasm/wasm-external-refs.h", 1724 "src/wasm/wasm-external-refs.h",
1724 "src/wasm/wasm-function-name-table.cc", 1725 "src/wasm/wasm-function-name-table.cc",
1725 "src/wasm/wasm-function-name-table.h", 1726 "src/wasm/wasm-function-name-table.h",
(...skipping 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after
2961 ] 2962 ]
2962 2963
2963 configs = [ 2964 configs = [
2964 ":external_config", 2965 ":external_config",
2965 ":internal_config_base", 2966 ":internal_config_base",
2966 ] 2967 ]
2967 } 2968 }
2968 2969
2969 v8_fuzzer("wasm_data_section_fuzzer") { 2970 v8_fuzzer("wasm_data_section_fuzzer") {
2970 } 2971 }
OLDNEW
« no previous file with comments | « no previous file | src/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698