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

Unified Diff: sky/BUILD.gn

Issue 1181893002: Add a new target, sky_apk, that builds a minimal subset of the tree for creating working sky demo a… (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 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: sky/BUILD.gn
diff --git a/sky/BUILD.gn b/sky/BUILD.gn
index df199465debb097a0545c06830f409b084b15270..bb298f381f5b7a684f842897690d3910595da0e6 100644
--- a/sky/BUILD.gn
+++ b/sky/BUILD.gn
@@ -13,20 +13,33 @@ group("sky") {
"//sky/engine/platform:platform_unittests",
"//sky/engine/web:sky_unittests",
"//sky/engine/wtf:unittests",
- "//sky/sdk",
"//sky/tools/imagediff",
"//sky/tools/tester",
"//sky/viewer",
+ ":sky_apk",
]
if (is_android) {
- deps += [
- "//sky/apk/demo",
- "//sky/apk/stocks",
- ]
+ deps += [ "//sky/apk/stocks" ]
}
if (!is_android) {
deps += [ "//third_party/mesa:osmesa" ]
}
}
+
+group("sky_apk") {
+ testonly = true
+
+ deps = [
+ "//mojo/dart/mojo_services",
+ "//mojo/dart/mojom",
+ "//mojo/public/dart:mojo",
+ "//sky/sdk",
+ "//third_party/dart-pkg",
+ ]
+
+ if (is_android) {
+ deps += [ "//sky/apk/demo" ]
+ }
+}
« 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