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

Unified Diff: mash/simple_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 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/simple_wm/main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mash/simple_wm/BUILD.gn
diff --git a/mash/simple_wm/BUILD.gn b/mash/simple_wm/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..2145fde745df4d2fd2fa1bc0e1e9ca53c8862b8c
--- /dev/null
+++ b/mash/simple_wm/BUILD.gn
@@ -0,0 +1,62 @@
+# 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("//build/config/ui.gni")
+import("//services/service_manager/public/cpp/service.gni")
+import("//services/service_manager/public/service_manifest.gni")
+import("//tools/grit/repack.gni")
+
+service("simple_wm") {
+ testonly = true
+
+ sources = [
+ "main.cc",
+ ]
+
+ deps = [
+ ":lib",
+ "//base",
+ "//services/service_manager/public/cpp",
+ "//ui/views/mus:for_mojo_application",
+ ]
+
+ resources = [ "$root_out_dir/views_mus_resources.pak" ]
+}
+
+source_set("lib") {
+ testonly = true
+ sources = [
+ "simple_wm.cc",
+ "simple_wm.h",
+ ]
+
+ deps = [
+ "//base",
+ "//services/service_manager/public/cpp",
+ "//services/ui/public/cpp",
+ "//services/ui/public/interfaces",
+ "//ui/aura",
+ "//ui/aura:test_support",
+ "//ui/display",
+ "//ui/display:test_support",
+ "//ui/gfx/geometry/mojo",
+ "//ui/views",
+ "//ui/views/mus:mus",
+ "//ui/wm",
+ ]
+
+ public_deps = [
+ "//skia", # Due to use of Sk types in service header.
+ ]
+
+ data_deps = [
+ ":manifest",
+ "//services/ui",
+ ]
+}
+
+service_manifest("manifest") {
+ name = "simple_wm"
+ source = "manifest.json"
+}
« no previous file with comments | « mash/session/session.cc ('k') | mash/simple_wm/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698