[tools] include missing dep for v8_debug_helper
This fixes a build break in certain configurations. v8_debug_helper depends on generate_bytecode_builtins_list via the following headers: In file included from gen/v8/tools/debug_helper/heap-constants-gen.cc:5: In file included from ../../v8\src/common/ptr-compr-inl.h:10: In file included from ../../v8\src/execution/isolate.h:19: In file included from ../../v8\src/builtins/builtins.h:9: Change-Id: I38e5d851afc6ce52716d3e5e64ae9219df396bd4 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2078768 Commit-Queue: Tobias Tebbi <tebbi@chromium.org> Auto-Submit: Seth Brenith <seth.brenith@microsoft.com> Reviewed-by: Tobias Tebbi <tebbi@chromium.org> Cr-Commit-Position: refs/heads/master@{#66517}
This commit is contained in:
parent
84279bfcca
commit
5f5bcace28
@ -32,15 +32,11 @@ action("run_mkgrokdump") {
|
|||||||
testonly = true
|
testonly = true
|
||||||
visibility = [ ":*" ]
|
visibility = [ ":*" ]
|
||||||
|
|
||||||
deps = [
|
deps = [ "../../test/mkgrokdump:mkgrokdump($v8_generator_toolchain)" ]
|
||||||
"../../test/mkgrokdump:mkgrokdump($v8_generator_toolchain)",
|
|
||||||
]
|
|
||||||
|
|
||||||
script = "../run.py"
|
script = "../run.py"
|
||||||
|
|
||||||
outputs = [
|
outputs = [ "$target_gen_dir/v8heapconst.py" ]
|
||||||
"$target_gen_dir/v8heapconst.py",
|
|
||||||
]
|
|
||||||
|
|
||||||
args = [
|
args = [
|
||||||
"./" + rebase_path(
|
"./" + rebase_path(
|
||||||
@ -56,13 +52,9 @@ action("run_mkgrokdump") {
|
|||||||
action("gen_heap_constants") {
|
action("gen_heap_constants") {
|
||||||
testonly = true
|
testonly = true
|
||||||
visibility = [ ":*" ]
|
visibility = [ ":*" ]
|
||||||
deps = [
|
deps = [ ":run_mkgrokdump" ]
|
||||||
":run_mkgrokdump",
|
|
||||||
]
|
|
||||||
script = "gen-heap-constants.py"
|
script = "gen-heap-constants.py"
|
||||||
outputs = [
|
outputs = [ "$target_gen_dir/heap-constants-gen.cc" ]
|
||||||
"$target_gen_dir/heap-constants-gen.cc",
|
|
||||||
]
|
|
||||||
args = [
|
args = [
|
||||||
rebase_path(target_gen_dir, root_build_dir),
|
rebase_path(target_gen_dir, root_build_dir),
|
||||||
rebase_path("$target_gen_dir/heap-constants-gen.cc", root_build_dir),
|
rebase_path("$target_gen_dir/heap-constants-gen.cc", root_build_dir),
|
||||||
@ -72,9 +64,7 @@ action("gen_heap_constants") {
|
|||||||
v8_component("v8_debug_helper") {
|
v8_component("v8_debug_helper") {
|
||||||
testonly = true
|
testonly = true
|
||||||
|
|
||||||
public = [
|
public = [ "debug-helper.h" ]
|
||||||
"debug-helper.h",
|
|
||||||
]
|
|
||||||
|
|
||||||
sources = [
|
sources = [
|
||||||
"$target_gen_dir/../../torque-generated/class-debug-readers-tq.cc",
|
"$target_gen_dir/../../torque-generated/class-debug-readers-tq.cc",
|
||||||
@ -91,6 +81,7 @@ v8_component("v8_debug_helper") {
|
|||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
":gen_heap_constants",
|
":gen_heap_constants",
|
||||||
|
"../..:generate_bytecode_builtins_list",
|
||||||
"../..:run_torque",
|
"../..:run_torque",
|
||||||
"../..:v8_headers",
|
"../..:v8_headers",
|
||||||
"../..:v8_libbase",
|
"../..:v8_libbase",
|
||||||
|
Loading…
Reference in New Issue
Block a user