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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//services/service_manager/public/cpp/service.gni")
6 import("//services/service_manager/public/service_manifest.gni")
7
8 service("wm") {
9 sources = [
10 "main.cc",
11 ]
12
13 deps = [
14 ":lib",
15 "//services/service_manager/public/cpp",
16 "//ui/views/mus:for_mojo_application",
17 ]
18 }
19
20 source_set("lib") {
21 sources = [
22 "wm.cc",
23 "wm.h",
24 ]
25
26 deps = [
27 "//base",
28 "//services/service_manager/public/cpp",
29 "//services/ui/public/cpp",
30 "//services/ui/public/interfaces",
31 "//ui/display",
32 "//ui/gfx/geometry/mojo",
33 ]
34
35 data_deps = [
36 ":manifest",
37 "//services/ui",
38 ]
39 }
40
41 service_manifest("manifest") {
42 name = "wm"
43 source = "manifest.json"
44 }
OLDNEW
« 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