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

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

Issue 1641003002: [exp] ash: Ash in Mus. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tot-merge Created 4 years, 11 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/host/transformer_helper.cc ('k') | ash/mus/wm/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/wm/BUILD.gn
diff --git a/ash/mus/wm/BUILD.gn b/ash/mus/wm/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..2a5e2b9401615d64df99119d690ae5822eb85750
--- /dev/null
+++ b/ash/mus/wm/BUILD.gn
@@ -0,0 +1,56 @@
+# 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("//mojo/public/mojo_application.gni")
+import("//mojo/public/tools/bindings/mojom.gni")
+import("//tools/grit/repack.gni")
+
+source_set("lib") {
+ testonly = true
+
+ sources = [
+ "accelerator_registrar_impl.cc",
+ "accelerator_registrar_impl.h",
+ "non_client_frame_controller.cc",
+ "non_client_frame_controller.h",
+ "window_manager_application.cc",
+ "window_manager_application.h",
+ "window_manager_impl.cc",
+ "window_manager_impl.h",
+ ]
+
+ deps = [
+ "//ash:ash_shell_lib",
+ "//components/mus/common",
+ "//components/mus/public/cpp",
+ "//components/mus/public/interfaces",
+ "//mojo/common:common_base",
+ "//mojo/converters/geometry",
+ "//mojo/converters/input_events",
+ "//mojo/services/tracing/public/cpp",
+ "//mojo/shell/public/cpp",
+ "//skia",
+ "//ui/aura",
+ "//ui/events",
+ "//ui/gfx",
+ "//ui/gfx/geometry",
+ "//ui/mojo/init",
+ "//ui/resources",
+ "//ui/strings",
+ "//ui/views",
+ "//ui/views/mus:for_mojo_application",
+ ]
+}
+
+mojo_native_application("wm") {
+ output_name = "ash_wm"
+ sources = [
+ "main.cc",
+ ]
+ testonly = true
+ deps = [
+ ":lib",
+ ]
+}
« no previous file with comments | « ash/host/transformer_helper.cc ('k') | ash/mus/wm/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698