Index: mojo/dart/BUILD.gn |
diff --git a/mojo/dart/BUILD.gn b/mojo/dart/BUILD.gn |
index 88cc7fea62d695a94b77b406d0c3f38f9f5f9c8d..3c551a04e2f3052fa486caf6bf7e399006c84038 100644 |
--- a/mojo/dart/BUILD.gn |
+++ b/mojo/dart/BUILD.gn |
@@ -2,13 +2,17 @@ |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
+import("//mojo/public/mojo.gni") |
jamesr
2015/08/17 22:10:15
what's this needed for?
zra
2015/08/17 22:51:27
It was for mojo_use_prebuilt_dart_snapshotter. Rem
|
+ |
group("dart") { |
deps = [ |
"//mojo/dart/apptest", |
- "//mojo/dart/dart_snapshotter($host_toolchain)", |
"//mojo/dart/http_load_test", |
"//mojo/dart/mojom", |
"//mojo/dart/mojo_services", |
"//mojo/dart/observatory_test", |
] |
+ if (!mojo_use_prebuilt_dart_snapshotter) { |
jamesr
2015/08/17 22:10:16
this will never be true in //mojo/dart, since this
zra
2015/08/17 22:51:27
Ah, yah. I was just locally testing the rules for
|
+ deps += [ "//mojo/dart/dart_snapshotter($host_toolchain)" ] |
+ } |
} |