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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « mash/session/session.cc ('k') | mash/simple_wm/main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//build/config/ui.gni")
6 import("//services/service_manager/public/cpp/service.gni")
7 import("//services/service_manager/public/service_manifest.gni")
8 import("//tools/grit/repack.gni")
9
10 service("simple_wm") {
11 testonly = true
12
13 sources = [
14 "main.cc",
15 ]
16
17 deps = [
18 ":lib",
19 "//base",
20 "//services/service_manager/public/cpp",
21 "//ui/views/mus:for_mojo_application",
22 ]
23
24 resources = [ "$root_out_dir/views_mus_resources.pak" ]
25 }
26
27 source_set("lib") {
28 testonly = true
29 sources = [
30 "simple_wm.cc",
31 "simple_wm.h",
32 ]
33
34 deps = [
35 "//base",
36 "//services/service_manager/public/cpp",
37 "//services/ui/public/cpp",
38 "//services/ui/public/interfaces",
39 "//ui/aura",
40 "//ui/aura:test_support",
41 "//ui/display",
42 "//ui/display:test_support",
43 "//ui/gfx/geometry/mojo",
44 "//ui/views",
45 "//ui/views/mus:mus",
46 "//ui/wm",
47 ]
48
49 public_deps = [
50 "//skia", # Due to use of Sk types in service header.
51 ]
52
53 data_deps = [
54 ":manifest",
55 "//services/ui",
56 ]
57 }
58
59 service_manifest("manifest") {
60 name = "simple_wm"
61 source = "manifest.json"
62 }
OLDNEW
« 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