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

Unified Diff: mash/wm/BUILD.gn

Issue 2511233002: Add the beginning of a simple window manager that we'll support on Windows. (Closed)
Patch Set: . Created 4 years, 1 month 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 | « mash/session/session.cc ('k') | mash/wm/main.cc » ('j') | mash/wm/wm.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mash/wm/BUILD.gn
diff --git a/mash/wm/BUILD.gn b/mash/wm/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..71c07762fc17a3a08962d95ebeff20cb797a0237
--- /dev/null
+++ b/mash/wm/BUILD.gn
@@ -0,0 +1,44 @@
+# Copyright 2016 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")
+
+service("wm") {
+ sources = [
+ "main.cc",
+ ]
+
+ deps = [
+ ":lib",
+ "//services/service_manager/public/cpp",
+ "//ui/views/mus:for_mojo_application",
+ ]
+}
+
+source_set("lib") {
+ sources = [
+ "wm.cc",
+ "wm.h",
+ ]
+
+ deps = [
+ "//base",
+ "//services/service_manager/public/cpp",
+ "//services/ui/public/cpp",
+ "//services/ui/public/interfaces",
+ "//ui/display",
+ "//ui/gfx/geometry/mojo",
+ ]
+
+ data_deps = [
+ ":manifest",
+ "//services/ui",
+ ]
+}
+
+service_manifest("manifest") {
+ name = "wm"
+ source = "manifest.json"
+}
« no previous file with comments | « mash/session/session.cc ('k') | mash/wm/main.cc » ('j') | mash/wm/wm.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698