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

Unified Diff: utils/application_snapshot.gni

Issue 2856713003: [GN] Change a filesystem absolute path deps to be source absolute (Closed)
Patch Set: Created 3 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/application_snapshot.gni
diff --git a/utils/application_snapshot.gni b/utils/application_snapshot.gni
index 8899703e912870b3f2e223d0accaa29f2ce1b379..9a317e291ecc31e597738f5755d062de978caa7a 100644
--- a/utils/application_snapshot.gni
+++ b/utils/application_snapshot.gni
@@ -4,7 +4,7 @@
import("../build/compiled_action.gni")
-_dart_root = rebase_path("..")
+_dart_root = get_path_info("..", "abspath")
template("application_snapshot") {
assert(defined(invoker.main_dart), "Must specify 'main_dart'")
@@ -24,7 +24,7 @@ template("application_snapshot") {
extra_inputs += invoker.inputs
}
compiled_action(target_name) {
- tool = get_path_info("$_dart_root/runtime/bin:dart", "abspath")
+ tool = "$_dart_root/runtime/bin:dart"
deps = extra_deps + [ "$_dart_root/pkg:pkg_files_stamp" ]
inputs = extra_inputs + [
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698