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

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
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/wm",
46 ]
47
48 public_deps = [
49 "//skia", # Due to use of Sk types in service header.
50 ]
51
52 data_deps = [
53 ":manifest",
54 "//services/ui",
55 ]
56 }
57
58 service_manifest("manifest") {
59 name = "simple_wm"
60 source = "manifest.json"
61 }
OLDNEW
« no previous file with comments | « mash/session/session.cc ('k') | mash/simple_wm/main.cc » ('j') | mash/simple_wm/manifest.json » ('J')

Powered by Google App Engine
This is Rietveld 408576698