57d088517c
* feat: add support for validating asar archives on macOS * chore: fix lint * chore: update as per feedback * feat: switch implementation to asar integrity hash checks * feat: make ranged requests work with the asar file validator DataSourceFilter * chore: fix lint * chore: fix missing log include on non-darwin * fix: do not pull block size out of missing optional * fix: match ValidateOrDie symbol on non-darwin * chore: fix up asar specs by repacking archives * fix: maintain integrity chain, do not load file integrity if header integrity was not loaded * debug test * Update node-spec.ts * fix: initialize header_validated_ * chore: update PR per feedback * chore: update per feedback * build: use final asar module * Update fuses.json5
98 lines
2.9 KiB
Text
98 lines
2.9 KiB
Text
import("node.gni")
|
|
|
|
# TODO(MarshallOfSound): Move to electron/node, this is the only place it is used now
|
|
# Run an action with a given working directory. Behaves identically to the
|
|
# action() target type, with the exception that it changes directory before
|
|
# running the script.
|
|
#
|
|
# Parameters:
|
|
# cwd [required]: Directory to change to before running the script.
|
|
template("chdir_action") {
|
|
action(target_name) {
|
|
forward_variables_from(invoker,
|
|
"*",
|
|
[
|
|
"script",
|
|
"args",
|
|
])
|
|
assert(defined(cwd), "Need cwd in $target_name")
|
|
script = "//electron/build/run-in-dir.py"
|
|
if (defined(sources)) {
|
|
sources += [ invoker.script ]
|
|
} else {
|
|
assert(defined(inputs))
|
|
inputs += [ invoker.script ]
|
|
}
|
|
args = [
|
|
rebase_path(cwd),
|
|
rebase_path(invoker.script),
|
|
]
|
|
args += invoker.args
|
|
}
|
|
}
|
|
|
|
template("asar") {
|
|
assert(defined(invoker.sources),
|
|
"Need sources in $target_name listing the source files")
|
|
assert(defined(invoker.outputs),
|
|
"Need asar name (as 1-element array, e.g. \$root_out_dir/foo.asar)")
|
|
assert(defined(invoker.root), "Need the base dir for generating the ASAR")
|
|
|
|
node_action(target_name) {
|
|
forward_variables_from(invoker,
|
|
"*",
|
|
[
|
|
"script",
|
|
"args",
|
|
])
|
|
|
|
script = "//electron/script/gn-asar.js"
|
|
args = [
|
|
"--base",
|
|
rebase_path(root),
|
|
"--files",
|
|
] + rebase_path(sources) +
|
|
[
|
|
"--out",
|
|
rebase_path(outputs[0]),
|
|
]
|
|
}
|
|
|
|
node_action(target_name + "_header_hash") {
|
|
invoker_out = invoker.outputs
|
|
|
|
deps = [ ":" + invoker.target_name ]
|
|
sources = invoker.outputs
|
|
|
|
script = "//electron/script/gn-asar-hash.js"
|
|
outputs = [ "$target_gen_dir/asar_hashes/$target_name.hash" ]
|
|
|
|
args = [
|
|
rebase_path(invoker_out[0]),
|
|
rebase_path(outputs[0]),
|
|
]
|
|
}
|
|
}
|
|
|
|
template("asar_hashed_info_plist") {
|
|
node_action(target_name) {
|
|
assert(defined(invoker.plist_file),
|
|
"Need plist_file to add hashed assets to")
|
|
assert(defined(invoker.keys), "Need keys to replace with asset hash")
|
|
assert(defined(invoker.hash_targets), "Need hash_targets to read hash from")
|
|
|
|
deps = invoker.hash_targets
|
|
|
|
script = "//electron/script/gn-plist-but-with-hashes.js"
|
|
inputs = [ invoker.plist_file ]
|
|
outputs = [ "$target_gen_dir/hashed_plists/$target_name.plist" ]
|
|
hash_files = []
|
|
foreach(hash_target, invoker.hash_targets) {
|
|
hash_files += get_target_outputs(hash_target)
|
|
}
|
|
args = [
|
|
rebase_path(invoker.plist_file),
|
|
rebase_path(outputs[0]),
|
|
] + invoker.keys + rebase_path(hash_files)
|
|
}
|
|
}
|