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

Side by Side Diff: mojo/services/window_manager/BUILD.gn

Issue 698543005: Make a pure mojo::View version of the aura::Window FocusController. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: sky comments Created 6 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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 if (use_aura) {
8
9 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager 7 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager
10 shared_library("window_manager") { 8 shared_library("window_manager") {
11 sources = [ "main.cc" ] 9 sources = [ "main.cc" ]
12 10
13 public_deps = [ 11 public_deps = [
14 ":lib", 12 ":lib",
15 ] 13 ]
16 14
17 deps = [ 15 deps = [
18 "//base", 16 "//base",
19 "//mojo/application", 17 "//mojo/application",
20 "//mojo/public/c/system:for_shared_library", 18 "//mojo/public/c/system:for_shared_library",
21 "//mojo/services/public/cpp/view_manager", 19 "//mojo/services/public/cpp/view_manager",
22 ] 20 ]
23 } 21 }
24 22
25 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager_lib 23 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager_lib
26 source_set("lib") { 24 source_set("lib") {
27 sources = [ 25 sources = [
26 "basic_focus_rules.cc",
27 "basic_focus_rules.h",
28 "focus_controller.cc",
29 "focus_controller.h",
30 "focus_controller_observer.h",
31 "focus_rules.h",
28 "native_viewport_event_dispatcher_impl.cc", 32 "native_viewport_event_dispatcher_impl.cc",
29 "native_viewport_event_dispatcher_impl.h", 33 "native_viewport_event_dispatcher_impl.h",
30 "window_manager_app.cc", 34 "window_manager_app.cc",
31 "window_manager_app.h", 35 "window_manager_app.h",
32 "window_manager_delegate.h", 36 "window_manager_delegate.h",
33 "window_manager_impl.cc", 37 "window_manager_impl.cc",
34 "window_manager_impl.h", 38 "window_manager_impl.h",
35 ] 39 "view_event_dispatcher.cc",
36 40 "view_event_dispatcher.h",
37 public_deps = [ 41 "view_target.cc",
38 "//mojo/aura", 42 "view_target.h",
43 "view_targeter.cc",
44 "view_targeter.h",
39 ] 45 ]
40 46
41 deps = [ 47 deps = [
42 "//base", 48 "//base",
43 "//ui/base", 49 "//ui/base",
44 "//ui/gfx", 50 "//ui/gfx",
45 "//ui/gfx/geometry", 51 "//ui/gfx/geometry",
46 "//ui/wm", 52 "//ui/wm",
47 "//mojo/aura",
48 "//mojo/application", 53 "//mojo/application",
49 "//mojo/common", 54 "//mojo/common",
50 "//mojo/converters/input_events", 55 "//mojo/converters/input_events",
51 "//mojo/services/public/cpp/view_manager", 56 "//mojo/services/public/cpp/view_manager",
52 "//mojo/public/interfaces/application:application", 57 "//mojo/public/interfaces/application:application",
53 "//mojo/services/public/interfaces/native_viewport", 58 "//mojo/services/public/interfaces/native_viewport",
54 "//mojo/services/public/interfaces/window_manager", 59 "//mojo/services/public/interfaces/window_manager",
55 ] 60 ]
56 } 61 }
57 62
(...skipping 14 matching lines...) Expand all
72 "//mojo/services/public/interfaces/window_manager", 77 "//mojo/services/public/interfaces/window_manager",
73 "//mojo/shell:test_support", 78 "//mojo/shell:test_support",
74 "//testing/gtest", 79 "//testing/gtest",
75 "//ui/gl", 80 "//ui/gl",
76 ] 81 ]
77 82
78 if (use_x11) { 83 if (use_x11) {
79 deps += [ "//ui/gfx/x" ] 84 deps += [ "//ui/gfx/x" ]
80 } 85 }
81 } 86 }
82
83 } # use_aura
OLDNEW
« no previous file with comments | « mojo/services/public/cpp/view_manager/view_tracker.cc ('k') | mojo/services/window_manager/basic_focus_rules.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698