1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00

Remove unused bundle_hash_h

It was orphaned in 92e404.
This commit is contained in:
Ryan Dahl 2018-11-14 21:04:35 -05:00
parent 48bf4062e4
commit 96c3641fff

View file

@ -282,29 +282,6 @@ run_node("bundle") {
]
}
action("bundle_hash_h") {
script = "//tools/sha256sum.py"
inputs = get_target_outputs(":bundle")
outputs = [
"$target_gen_dir/bundle/hash.h",
]
deps = [
":bundle",
]
args = [
"--format",
"__attribute__((__unused__)) static const int dummy_%s = 0;",
"--outfile",
rebase_path(outputs[0], root_build_dir),
]
foreach(input, inputs) {
args += [
"--infile",
rebase_path(input, root_build_dir),
]
}
}
ts_flatbuffer("msg_ts") {
sources = [
"src/msg.fbs",