From f7c8140aa30f93f48a32a89a93233ddb3029592d Mon Sep 17 00:00:00 2001 From: Adam Barth Date: Fri, 16 Sep 2016 15:26:17 -0700 Subject: [PATCH] Fix gn build We need to update the call to make_link.py in the same way the GYP build was updated. --- pkg/BUILD.gn | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkg/BUILD.gn b/pkg/BUILD.gn index 91a2266c2f6..7df856e9e78 100644 --- a/pkg/BUILD.gn +++ b/pkg/BUILD.gn @@ -18,15 +18,17 @@ action("pkg") { timestamp_file = "$target_gen_dir/packages.stamp" outputs = [ timestamp_file, + "$root_out_dir/.packages", ] script = "../tools/make_links.py" args = [ + "--create-links", + "--create-package-file", "--quiet", "--timestamp_file", rebase_path(timestamp_file), - rebase_path("$root_out_dir/packages"),] + - inputs + + ] + inputs + # Pub imports dart2js as compiler_unsupported so it can work outside # the SDK. Map that to the compiler package. [rebase_path("compiler/lib") + ":compiler_unsupported",]