| 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 + [
|
|
|