| Index: chrome/version.gni
|
| diff --git a/chrome/version.gni b/chrome/version.gni
|
| index b2e38d5ada1c7125dda61fe6f669f870db45c4be..cc8d96a4c665d7f99bd2d8dc4f262dfe80a862b4 100644
|
| --- a/chrome/version.gni
|
| +++ b/chrome/version.gni
|
| @@ -51,14 +51,21 @@ template("process_version") {
|
| branding_path,
|
| ]
|
|
|
| - outputs = [ invoker.output ]
|
| + outputs = [
|
| + invoker.output,
|
| + ]
|
|
|
| args = [
|
| - "-f", rebase_path(version_path, root_build_dir),
|
| - "-f", rebase_path(branding_path, root_build_dir),
|
| - "-f", rebase_path(lastchange_path, root_build_dir),
|
| - "-i", rebase_path(invoker.source, root_build_dir),
|
| - "-o", rebase_path(invoker.output, root_build_dir),
|
| + "-f",
|
| + rebase_path(version_path, root_build_dir),
|
| + "-f",
|
| + rebase_path(branding_path, root_build_dir),
|
| + "-f",
|
| + rebase_path(lastchange_path, root_build_dir),
|
| + "-i",
|
| + rebase_path(invoker.source, root_build_dir),
|
| + "-o",
|
| + rebase_path(invoker.output, root_build_dir),
|
| ]
|
|
|
| if (defined(invoker.extra_args)) {
|
|
|