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:
parent
320bea4c28
commit
8e1160fde4
2 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||||
|
|
||||||
|
|
|
@ -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 ]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue