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

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

Issue 718573002: Revert "Remove aura and make a pure mojo::View version of the aura::Window FocusController." (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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
7 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager 9 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager
8 shared_library("window_manager") { 10 shared_library("window_manager") {
9 sources = [ "main.cc" ] 11 sources = [ "main.cc" ]
10 12
11 public_deps = [ 13 public_deps = [
12 ":lib", 14 ":lib",
13 ] 15 ]
14 16
15 deps = [ 17 deps = [
16 "//base", 18 "//base",
17 "//mojo/application", 19 "//mojo/application",
18 "//mojo/public/c/system:for_shared_library", 20 "//mojo/public/c/system:for_shared_library",
19 "//mojo/services/public/cpp/view_manager", 21 "//mojo/services/public/cpp/view_manager",
20 ] 22 ]
21 } 23 }
22 24
23 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager_lib 25 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager_lib
24 source_set("lib") { 26 source_set("lib") {
25 sources = [ 27 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",
32 "native_viewport_event_dispatcher_impl.cc", 28 "native_viewport_event_dispatcher_impl.cc",
33 "native_viewport_event_dispatcher_impl.h", 29 "native_viewport_event_dispatcher_impl.h",
34 "window_manager_app.cc", 30 "window_manager_app.cc",
35 "window_manager_app.h", 31 "window_manager_app.h",
36 "window_manager_delegate.h", 32 "window_manager_delegate.h",
37 "window_manager_impl.cc", 33 "window_manager_impl.cc",
38 "window_manager_impl.h", 34 "window_manager_impl.h",
39 "view_event_dispatcher.cc", 35 ]
40 "view_event_dispatcher.h", 36
41 "view_target.cc", 37 public_deps = [
42 "view_target.h", 38 "//mojo/aura",
43 "view_targeter.cc",
44 "view_targeter.h",
45 ] 39 ]
46 40
47 deps = [ 41 deps = [
48 "//base", 42 "//base",
49 "//ui/base", 43 "//ui/base",
50 "//ui/gfx", 44 "//ui/gfx",
51 "//ui/gfx/geometry", 45 "//ui/gfx/geometry",
52 "//ui/wm", 46 "//ui/wm",
47 "//mojo/aura",
53 "//mojo/application", 48 "//mojo/application",
54 "//mojo/common", 49 "//mojo/common",
55 "//mojo/converters/input_events", 50 "//mojo/converters/input_events",
56 "//mojo/services/public/cpp/view_manager", 51 "//mojo/services/public/cpp/view_manager",
57 "//mojo/public/interfaces/application:application", 52 "//mojo/public/interfaces/application:application",
58 "//mojo/services/public/interfaces/native_viewport", 53 "//mojo/services/public/interfaces/native_viewport",
59 "//mojo/services/public/interfaces/window_manager", 54 "//mojo/services/public/interfaces/window_manager",
60 ] 55 ]
61 } 56 }
62 57
(...skipping 14 matching lines...) Expand all
77 "//mojo/services/public/interfaces/window_manager", 72 "//mojo/services/public/interfaces/window_manager",
78 "//mojo/shell:test_support", 73 "//mojo/shell:test_support",
79 "//testing/gtest", 74 "//testing/gtest",
80 "//ui/gl", 75 "//ui/gl",
81 ] 76 ]
82 77
83 if (use_x11) { 78 if (use_x11) {
84 deps += [ "//ui/gfx/x" ] 79 deps += [ "//ui/gfx/x" ]
85 } 80 }
86 } 81 }
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