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

Side by Side Diff: ui/wm/BUILD.gn

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 years, 11 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 | « ui/views/window/window_shape.cc ('k') | ui/wm/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 component("wm") {
6 sources = [
7 "core/accelerator_delegate.h",
8 "core/accelerator_filter.cc",
9 "core/accelerator_filter.h",
10 "core/base_focus_rules.cc",
11 "core/base_focus_rules.h",
12 "core/capture_controller.cc",
13 "core/capture_controller.h",
14 "core/compound_event_filter.cc",
15 "core/compound_event_filter.h",
16 "core/coordinate_conversion.cc",
17 "core/coordinate_conversion.h",
18 "core/cursor_manager.cc",
19 "core/cursor_manager.h",
20 "core/default_activation_client.cc",
21 "core/default_activation_client.h",
22 "core/easy_resize_window_targeter.cc",
23 "core/easy_resize_window_targeter.h",
24 "core/focus_controller.cc",
25 "core/focus_controller.h",
26 "core/focus_rules.h",
27 "core/image_grid.cc",
28 "core/image_grid.h",
29 "core/input_method_event_filter.cc",
30 "core/input_method_event_filter.h",
31 "core/masked_window_targeter.cc",
32 "core/masked_window_targeter.h",
33 "core/native_cursor_manager.h",
34 "core/native_cursor_manager_delegate.h",
35 "core/nested_accelerator_dispatcher_linux.cc",
36 "core/nested_accelerator_dispatcher_win.cc",
37 "core/nested_accelerator_dispatcher.cc",
38 "core/nested_accelerator_dispatcher.h",
39 "core/nested_accelerator_delegate.h",
40 "core/nested_accelerator_controller.cc",
41 "core/nested_accelerator_controller.h",
42 "core/shadow.cc",
43 "core/shadow.h",
44 "core/shadow_controller.cc",
45 "core/shadow_controller.h",
46 "core/shadow_types.cc",
47 "core/shadow_types.h",
48 "core/transient_window_controller.cc",
49 "core/transient_window_controller.h",
50 "core/transient_window_manager.cc",
51 "core/transient_window_manager.h",
52 "core/transient_window_observer.h",
53 "core/transient_window_stacking_client.cc",
54 "core/transient_window_stacking_client.h",
55 "core/user_activity_detector.cc",
56 "core/user_activity_detector.h",
57 "core/user_activity_observer.h",
58 "core/visibility_controller.cc",
59 "core/visibility_controller.h",
60 "core/window_animations.cc",
61 "core/window_animations.h",
62 "core/window_modality_controller.cc",
63 "core/window_modality_controller.h",
64 "core/window_util.cc",
65 "core/window_util.h",
66 "core/wm_core_switches.cc",
67 "core/wm_core_switches.h",
68 "core/wm_state.cc",
69 "core/wm_state.h",
70 "wm_export.h",
71 ]
72
73 defines = [ "WM_IMPLEMENTATION" ]
74
75 deps = [
76 "//base",
77 "//skia",
78 "//ui/aura",
79 "//ui/base",
80 "//ui/compositor",
81 "//ui/events",
82 "//ui/events/platform",
83 "//ui/events:events_base",
84 "//ui/events/platform",
85 "//ui/gfx",
86 "//ui/gfx/geometry",
87 "//ui/resources",
88 ]
89 }
90
91 if (false) {
92 static_library("test_support") {
93 testonly = true
94 sources = [
95 "test/wm_test_helper.cc",
96 "test/wm_test_helper.h",
97 ]
98
99 deps = [
100 ":wm",
101 "//skia",
102 "//ui/aura",
103 "//ui/aura:test_support",
104 "//ui/base",
105 "//ui/events",
106 "//ui/events:events_base",
107 ]
108 }
109
110 test("wm_unittests") {
111 sources = [
112 "test/run_all_unittests.cc",
113 "core/compound_event_filter_unittest.cc",
114 "core/cursor_manager_unittest.cc",
115 "core/focus_controller_unittest.cc",
116 "core/input_method_event_filter_unittest.cc",
117 "core/image_grid_unittest.cc",
118 "core/nested_accelerator_controller_unittest.cc",
119 "core/shadow_controller_unittest.cc",
120 "core/transient_window_manager_unittest.cc",
121 "core/transient_window_stacking_client_unittest.cc",
122 "core/user_activity_detector_unittest.cc",
123 "core/visibility_controller_unittest.cc",
124 "core/window_animations_unittest.cc",
125 ]
126
127 deps = [
128 ":test_support",
129 ":wm",
130 "//base",
131 "//base/test:test_support",
132 "//skia",
133 "//testing/gtest",
134 "//ui/aura:test_support",
135 "//ui/base:test_support",
136 "//ui/compositor:test_support",
137 "//ui/events:test_support",
138 "//ui/events/platform",
139 "//ui/gfx",
140 "//ui/gfx/geometry",
141 "//ui/gl",
142 ]
143 }
144 } # if (false)
OLDNEW
« no previous file with comments | « ui/views/window/window_shape.cc ('k') | ui/wm/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698