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

Side by Side Diff: BUILD.gn

Issue 2676513008: [wasm] Managed<T> ensures T's lifetime does not leak past Isolate's (Closed)
Patch Set: moved cctest Created 3 years, 10 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/isolate.h » ('j') | src/isolate.h » ('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 1558 matching lines...) Expand 10 before | Expand all | Expand 10 after
1569 "src/log.cc", 1569 "src/log.cc",
1570 "src/log.h", 1570 "src/log.h",
1571 "src/lookup-cache-inl.h", 1571 "src/lookup-cache-inl.h",
1572 "src/lookup-cache.cc", 1572 "src/lookup-cache.cc",
1573 "src/lookup-cache.h", 1573 "src/lookup-cache.h",
1574 "src/lookup.cc", 1574 "src/lookup.cc",
1575 "src/lookup.h", 1575 "src/lookup.h",
1576 "src/machine-type.cc", 1576 "src/machine-type.cc",
1577 "src/machine-type.h", 1577 "src/machine-type.h",
1578 "src/macro-assembler.h", 1578 "src/macro-assembler.h",
1579 "src/managed.h",
1579 "src/map-updater.cc", 1580 "src/map-updater.cc",
1580 "src/map-updater.h", 1581 "src/map-updater.h",
1581 "src/messages.cc", 1582 "src/messages.cc",
1582 "src/messages.h", 1583 "src/messages.h",
1583 "src/msan.h", 1584 "src/msan.h",
1584 "src/objects-body-descriptors-inl.h", 1585 "src/objects-body-descriptors-inl.h",
1585 "src/objects-body-descriptors.h", 1586 "src/objects-body-descriptors.h",
1586 "src/objects-debug.cc", 1587 "src/objects-debug.cc",
1587 "src/objects-inl.h", 1588 "src/objects-inl.h",
1588 "src/objects-printer.cc", 1589 "src/objects-printer.cc",
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
1800 "src/vector.h", 1801 "src/vector.h",
1801 "src/version.cc", 1802 "src/version.cc",
1802 "src/version.h", 1803 "src/version.h",
1803 "src/vm-state-inl.h", 1804 "src/vm-state-inl.h",
1804 "src/vm-state.h", 1805 "src/vm-state.h",
1805 "src/wasm/decoder.h", 1806 "src/wasm/decoder.h",
1806 "src/wasm/function-body-decoder-impl.h", 1807 "src/wasm/function-body-decoder-impl.h",
1807 "src/wasm/function-body-decoder.cc", 1808 "src/wasm/function-body-decoder.cc",
1808 "src/wasm/function-body-decoder.h", 1809 "src/wasm/function-body-decoder.h",
1809 "src/wasm/leb-helper.h", 1810 "src/wasm/leb-helper.h",
1810 "src/wasm/managed.h",
1811 "src/wasm/module-decoder.cc", 1811 "src/wasm/module-decoder.cc",
1812 "src/wasm/module-decoder.h", 1812 "src/wasm/module-decoder.h",
1813 "src/wasm/signature-map.cc", 1813 "src/wasm/signature-map.cc",
1814 "src/wasm/signature-map.h", 1814 "src/wasm/signature-map.h",
1815 "src/wasm/wasm-debug.cc", 1815 "src/wasm/wasm-debug.cc",
1816 "src/wasm/wasm-external-refs.cc", 1816 "src/wasm/wasm-external-refs.cc",
1817 "src/wasm/wasm-external-refs.h", 1817 "src/wasm/wasm-external-refs.h",
1818 "src/wasm/wasm-interpreter.cc", 1818 "src/wasm/wasm-interpreter.cc",
1819 "src/wasm/wasm-interpreter.h", 1819 "src/wasm/wasm-interpreter.h",
1820 "src/wasm/wasm-js.cc", 1820 "src/wasm/wasm-js.cc",
(...skipping 736 matching lines...) Expand 10 before | Expand all | Expand 10 after
2557 } 2557 }
2558 2558
2559 group("v8_clusterfuzz") { 2559 group("v8_clusterfuzz") {
2560 deps = [ 2560 deps = [
2561 ":d8", 2561 ":d8",
2562 ] 2562 ]
2563 2563
2564 if (v8_multi_arch_build) { 2564 if (v8_multi_arch_build) {
2565 deps += [ 2565 deps += [
2566 ":d8(//build/toolchain/linux:clang_x64)", 2566 ":d8(//build/toolchain/linux:clang_x64)",
2567 ":d8(//build/toolchain/linux:clang_x64_v8_arm64)",
2567 ":d8(//build/toolchain/linux:clang_x86)", 2568 ":d8(//build/toolchain/linux:clang_x86)",
2568 ":d8(//build/toolchain/linux:clang_x64_v8_arm64)",
2569 ":d8(//build/toolchain/linux:clang_x86_v8_arm)", 2569 ":d8(//build/toolchain/linux:clang_x86_v8_arm)",
2570 ] 2570 ]
2571 } 2571 }
2572 } 2572 }
2573 2573
2574 group("v8_fuzzers") { 2574 group("v8_fuzzers") {
2575 testonly = true 2575 testonly = true
2576 deps = [ 2576 deps = [
2577 ":v8_simple_json_fuzzer", 2577 ":v8_simple_json_fuzzer",
2578 ":v8_simple_parser_fuzzer", 2578 ":v8_simple_parser_fuzzer",
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after
3098 ] 3098 ]
3099 3099
3100 configs = [ 3100 configs = [
3101 ":external_config", 3101 ":external_config",
3102 ":internal_config_base", 3102 ":internal_config_base",
3103 ] 3103 ]
3104 } 3104 }
3105 3105
3106 v8_fuzzer("wasm_data_section_fuzzer") { 3106 v8_fuzzer("wasm_data_section_fuzzer") {
3107 } 3107 }
OLDNEW
« no previous file with comments | « no previous file | src/isolate.h » ('j') | src/isolate.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698