Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(339)

Unified Diff: tools/generate_library_loader/generate_library_loader.gni

Issue 2905523002: Reduce absolute paths in generated ninja files (Closed)
Patch Set: revert build/config/gcc/BUILD.gn, rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « testing/libfuzzer/fuzzer_test.gni ('k') | ui/vector_icons/vector_icons.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/generate_library_loader/generate_library_loader.gni
diff --git a/tools/generate_library_loader/generate_library_loader.gni b/tools/generate_library_loader/generate_library_loader.gni
index 1e1d5d77775e43c775d4ea3557136d069547e0a7..8d025a149993fe9c8d46f4d130445f26f1d8d0f6 100644
--- a/tools/generate_library_loader/generate_library_loader.gni
+++ b/tools/generate_library_loader/generate_library_loader.gni
@@ -30,9 +30,9 @@ template("generate_library_loader") {
"--name",
invoker.name,
"--output-h",
- rebase_path(output_h),
+ rebase_path(output_h, root_build_dir),
"--output-cc",
- rebase_path(output_cc),
+ rebase_path(output_cc, root_build_dir),
"--header",
invoker.header,
« no previous file with comments | « testing/libfuzzer/fuzzer_test.gni ('k') | ui/vector_icons/vector_icons.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698