build: use fully qualified path names for deps (#30414)

This aligns the code with the GN Style Guide: https://gn.googlesource.com/gn/+/refs/heads/main/docs/style_guide.md#deps

Signed-off-by: Darshan Sen <darshan.sen@postman.com>
This commit is contained in:
Darshan Sen 2021-08-05 23:33:50 +05:30 committed by GitHub
parent 320bea4c28
commit 8e1160fde4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -5,8 +5,8 @@ template("npm_action") {
action("npm_pre_flight_" + target_name) { action("npm_pre_flight_" + target_name) {
inputs = [ inputs = [
"package.json", "//electron/package.json",
"yarn.lock", "//electron/yarn.lock",
] ]
script = "//electron/build/npm-run.py" script = "//electron/build/npm-run.py"

View file

@ -36,7 +36,7 @@ template("webpack_build") {
rebase_path("$target_gen_dir/buildflags/buildflags.h"), rebase_path("$target_gen_dir/buildflags/buildflags.h"),
"--env.mode=" + mode, "--env.mode=" + mode,
] ]
deps += [ "buildflags" ] deps += [ "//electron/buildflags" ]
outputs = [ invoker.out_file ] outputs = [ invoker.out_file ]
} }