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

Side by Side Diff: components/window_manager/BUILD.gn

Issue 1138073007: Nukes the windowmanager interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 7 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 unified diff | Download patch
« no previous file with comments | « components/view_manager/window_manager_access_policy.cc ('k') | components/window_manager/DEPS » ('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 2014 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("//third_party/mojo/src/mojo/public/mojo_application.gni")
7 import("//testing/test.gni")
8
9 source_set("lib") {
10 sources = [
11 "window_manager_app.cc",
12 "window_manager_app.h",
13 "window_manager_delegate.h",
14 "window_manager_impl.cc",
15 "window_manager_impl.h",
16 ]
17
18 deps = [
19 "//base",
20 "//components/view_manager/public/cpp",
21 "//components/window_manager/public/interfaces",
22 "//mojo/application",
23 "//mojo/application/public/interfaces",
24 "//mojo/common",
25 "//mojo/converters/geometry",
26 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings",
27 "//ui/gfx/geometry",
28 "//ui/mojo/events:interfaces",
29 ]
30
31 data_deps = [ "//components/view_manager" ]
32 }
33
34 # A basic window manager with a default delegate used for testing.
35 mojo_native_application("test_window_manager") {
36 sources = [
37 "main.cc",
38 ]
39
40 public_deps = [
41 ":lib",
42 ]
43
44 deps = [
45 "//base",
46 "//components/view_manager/public/cpp",
47 "//mojo/application",
48 "//mojo/common:tracing_impl",
49 ]
50 }
51
52 mojo_native_application("apptests") {
53 output_name = "window_manager_apptests"
54 testonly = true
55
56 sources = [
57 "window_manager_apptest.cc",
58 ]
59
60 deps = [
61 "//base",
62 "//components/view_manager/public/cpp",
63 "//components/window_manager/public/interfaces",
64 "//mojo/application",
65 "//mojo/application:test_support",
66 "//mojo/environment:chromium",
67 "//third_party/mojo/src/mojo/public/cpp/system:system",
68 ]
69
70 data_deps = [ ":test_window_manager($default_toolchain)" ]
71 }
OLDNEW
« no previous file with comments | « components/view_manager/window_manager_access_policy.cc ('k') | components/window_manager/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698