Index: build/secondary/tools/grit/grit_rule.gni |
diff --git a/build/secondary/tools/grit/grit_rule.gni b/build/secondary/tools/grit/grit_rule.gni |
index a9745b444a43170b95f3549cb840e25342f04be2..078f334f72f77a1b9c35603f4204f4818ed79caa 100644 |
--- a/build/secondary/tools/grit/grit_rule.gni |
+++ b/build/secondary/tools/grit/grit_rule.gni |
@@ -187,9 +187,9 @@ template("grit") { |
grit_flags, |
"list lines") |
- # The inputs are relative to the current (build) directory, rebase to |
- # the current one. |
- grit_outputs = rebase_path(grit_outputs_build_rel, ".", root_build_dir) |
+ # The inputs are relative to the current (build) directory, make absolute. |
awong
2014/07/11 19:52:20
Can you explain why abspath is required?
|
+ grit_outputs = get_path_info( |
+ rebase_path(grit_outputs_build_rel, ".", root_build_dir), "abspath") |
# The config and the action below get this visibility son only the generated |
# source set can depend on them. The variable "target_name" will get |