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

Unified Diff: ash/mus/standalone/BUILD.gn

Issue 2833093002: WIP: simplified display management in ash (Closed)
Patch Set: merge and more fixs 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 | « ash/mus/main.cc ('k') | ash/mus/standalone/manifest.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/standalone/BUILD.gn
diff --git a/ash/mus/standalone/BUILD.gn b/ash/mus/standalone/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..51ee1b88c35faeba989e25015a4ce1181af6614d
--- /dev/null
+++ b/ash/mus/standalone/BUILD.gn
@@ -0,0 +1,42 @@
+# Copyright 2017 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//services/service_manager/public/cpp/service.gni")
+import("//services/service_manager/public/service_manifest.gni")
+
+assert(is_chromeos)
+
+service("standalone_ash") {
+ output_name = "standalone_ash"
+ testonly = true
+
+ sources = [
+ "standalone_mash_main.cc",
+ ]
+
+ deps = [
+ "//ash:ash_shell_lib",
+ "//ash/mus:lib",
+ "//ash/mus:resources",
+ "//ash/mus:resources_200",
+ "//services/service_manager/public/cpp",
+ "//services/ui/public/cpp/input_devices",
+ "//services/ui/public/interfaces",
+ "//ui/app_list/presenter",
+ "//ui/views/examples:views_examples_lib",
+ ]
+
+ # TODO(beng): This target relies on //mash/session, but there is a cycle so we
+ # can't state that dependency here.
+ data_deps = [
+ "//ash/mus:resources",
+ "//ash/mus:resources_200",
+ "//services/ui",
+ ]
+}
+
+service_manifest("manifest") {
+ name = "standalone_ash"
+ source = "manifest.json"
+}
« no previous file with comments | « ash/mus/main.cc ('k') | ash/mus/standalone/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698