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

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

Issue 2002243002: Gets mash to use WmToplevelWindowEventHandler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: feedback Created 4 years, 6 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 | « ash/wm/common/wm_toplevel_window_event_handler.h ('k') | mash/wm/bridge/wm_globals_mus.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import("//mojo/public/mojo_application.gni") 6 import("//mojo/public/mojo_application.gni")
7 import("//mojo/public/mojo_application_manifest.gni") 7 import("//mojo/public/mojo_application_manifest.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//tools/grit/repack.gni") 9 import("//tools/grit/repack.gni")
10 10
(...skipping 12 matching lines...) Expand all
23 "bridge/wm_root_window_controller_mus.cc", 23 "bridge/wm_root_window_controller_mus.cc",
24 "bridge/wm_root_window_controller_mus.h", 24 "bridge/wm_root_window_controller_mus.h",
25 "bridge/wm_shelf_mus.cc", 25 "bridge/wm_shelf_mus.cc",
26 "bridge/wm_shelf_mus.h", 26 "bridge/wm_shelf_mus.h",
27 "bridge/wm_window_mus.cc", 27 "bridge/wm_window_mus.cc",
28 "bridge/wm_window_mus.h", 28 "bridge/wm_window_mus.h",
29 "container_ids.cc", 29 "container_ids.cc",
30 "container_ids.h", 30 "container_ids.h",
31 "disconnected_app_handler.cc", 31 "disconnected_app_handler.cc",
32 "disconnected_app_handler.h", 32 "disconnected_app_handler.h",
33 "drag_window_resizer.cc",
34 "drag_window_resizer.h",
33 "fill_layout.cc", 35 "fill_layout.cc",
34 "fill_layout.h", 36 "fill_layout.h",
35 "frame/caption_buttons/caption_button_types.h", 37 "frame/caption_buttons/caption_button_types.h",
36 "frame/caption_buttons/frame_caption_button.cc", 38 "frame/caption_buttons/frame_caption_button.cc",
37 "frame/caption_buttons/frame_caption_button.h", 39 "frame/caption_buttons/frame_caption_button.h",
38 "frame/caption_buttons/frame_caption_button_container_view.cc", 40 "frame/caption_buttons/frame_caption_button_container_view.cc",
39 "frame/caption_buttons/frame_caption_button_container_view.h", 41 "frame/caption_buttons/frame_caption_button_container_view.h",
40 "frame/default_header_painter.cc", 42 "frame/default_header_painter.cc",
41 "frame/default_header_painter.h", 43 "frame/default_header_painter.h",
42 "frame/frame_border_hit_test_controller.cc", 44 "frame/frame_border_hit_test_controller.cc",
43 "frame/frame_border_hit_test_controller.h", 45 "frame/frame_border_hit_test_controller.h",
44 "frame/header_painter.h", 46 "frame/header_painter.h",
45 "frame/header_painter_util.cc", 47 "frame/header_painter_util.cc",
46 "frame/header_painter_util.h", 48 "frame/header_painter_util.h",
47 "frame/move_event_handler.cc", 49 "frame/move_event_handler.cc",
48 "frame/move_event_handler.h", 50 "frame/move_event_handler.h",
49 "frame/move_loop.cc",
50 "frame/move_loop.h",
51 "frame/non_client_frame_view_mash.cc", 51 "frame/non_client_frame_view_mash.cc",
52 "frame/non_client_frame_view_mash.h", 52 "frame/non_client_frame_view_mash.h",
53 "layout_manager.cc", 53 "layout_manager.cc",
54 "layout_manager.h", 54 "layout_manager.h",
55 "non_client_frame_controller.cc", 55 "non_client_frame_controller.cc",
56 "non_client_frame_controller.h", 56 "non_client_frame_controller.h",
57 "property_util.cc", 57 "property_util.cc",
58 "property_util.h", 58 "property_util.h",
59 "root_window_controller.cc", 59 "root_window_controller.cc",
60 "root_window_controller.h", 60 "root_window_controller.h",
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 "//ui/views/resources", 153 "//ui/views/resources",
154 ] 154 ]
155 } 155 }
156 156
157 source_set("unittests") { 157 source_set("unittests") {
158 testonly = true 158 testonly = true
159 159
160 sources = [ 160 sources = [
161 "accelerator_registrar_unittest.cc", 161 "accelerator_registrar_unittest.cc",
162 "app_launch_unittest.cc", 162 "app_launch_unittest.cc",
163 "frame/move_loop_unittest.cc",
164 "layout_manager_unittest.cc", 163 "layout_manager_unittest.cc",
165 "test/wm_test_base.cc", 164 "test/wm_test_base.cc",
166 "test/wm_test_base.h", 165 "test/wm_test_base.h",
167 "test/wm_test_helper.cc", 166 "test/wm_test_helper.cc",
168 "test/wm_test_helper.h", 167 "test/wm_test_helper.h",
169 "test/wm_test_screen.cc", 168 "test/wm_test_screen.cc",
170 "test/wm_test_screen.h", 169 "test/wm_test_screen.h",
171 "window_manager_unittest.cc", 170 "window_manager_unittest.cc",
172 "workspace/workspace_layout_manager_unittest.cc", 171 "workspace/workspace_layout_manager_unittest.cc",
173 ] 172 ]
(...skipping 27 matching lines...) Expand all
201 "//ui/mojo/geometry:interfaces", 200 "//ui/mojo/geometry:interfaces",
202 "//ui/mojo/geometry:util", 201 "//ui/mojo/geometry:util",
203 "//ui/views/mus", 202 "//ui/views/mus",
204 ] 203 ]
205 204
206 data_deps = [ 205 data_deps = [
207 ":wm", 206 ":wm",
208 "//mash/quick_launch", 207 "//mash/quick_launch",
209 ] 208 ]
210 } 209 }
OLDNEW
« no previous file with comments | « ash/wm/common/wm_toplevel_window_event_handler.h ('k') | mash/wm/bridge/wm_globals_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698