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

Side by Side Diff: ash/mus/BUILD.gn

Issue 2642003002: Removes ash::mus::RootWindowController (Closed)
Patch Set: feedback Created 3 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 | « no previous file | ash/mus/bridge/wm_lookup_mus.h » ('j') | ash/mus/top_level_window_factory.cc » ('J')
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/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.gni")
7 import("//services/service_manager/public/cpp/service.gni") 7 import("//services/service_manager/public/cpp/service.gni")
8 import("//services/service_manager/public/service_manifest.gni") 8 import("//services/service_manager/public/service_manifest.gni")
9 import("//tools/grit/repack.gni") 9 import("//tools/grit/repack.gni")
10 10
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 "keyboard_ui_mus.cc", 42 "keyboard_ui_mus.cc",
43 "keyboard_ui_mus.h", 43 "keyboard_ui_mus.h",
44 "move_event_handler.cc", 44 "move_event_handler.cc",
45 "move_event_handler.h", 45 "move_event_handler.h",
46 "network_connect_delegate_mus.cc", 46 "network_connect_delegate_mus.cc",
47 "network_connect_delegate_mus.h", 47 "network_connect_delegate_mus.h",
48 "non_client_frame_controller.cc", 48 "non_client_frame_controller.cc",
49 "non_client_frame_controller.h", 49 "non_client_frame_controller.h",
50 "property_util.cc", 50 "property_util.cc",
51 "property_util.h", 51 "property_util.h",
52 "root_window_controller.cc",
53 "root_window_controller.h",
54 "screen_mus.cc", 52 "screen_mus.cc",
55 "screen_mus.h", 53 "screen_mus.h",
56 "shadow.cc", 54 "shadow.cc",
57 "shadow.h", 55 "shadow.h",
58 "shadow_controller.cc", 56 "shadow_controller.cc",
59 "shadow_controller.h", 57 "shadow_controller.h",
60 "shelf_delegate_mus.cc", 58 "shelf_delegate_mus.cc",
61 "shelf_delegate_mus.h", 59 "shelf_delegate_mus.h",
62 "shell_delegate_mus.cc", 60 "shell_delegate_mus.cc",
63 "shell_delegate_mus.h", 61 "shell_delegate_mus.h",
64 "system_tray_delegate_mus.cc", 62 "system_tray_delegate_mus.cc",
65 "system_tray_delegate_mus.h", 63 "system_tray_delegate_mus.h",
64 "top_level_window_factory.cc",
65 "top_level_window_factory.h",
66 "wallpaper_delegate_mus.cc", 66 "wallpaper_delegate_mus.cc",
67 "wallpaper_delegate_mus.h", 67 "wallpaper_delegate_mus.h",
68 "window_manager.cc", 68 "window_manager.cc",
69 "window_manager.h", 69 "window_manager.h",
70 "window_manager_application.cc", 70 "window_manager_application.cc",
71 "window_manager_application.h", 71 "window_manager_application.h",
72 "window_properties.cc", 72 "window_properties.cc",
73 "window_properties.h", 73 "window_properties.h",
74 ] 74 ]
75 75
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 199
200 source_set("unittests") { 200 source_set("unittests") {
201 testonly = true 201 testonly = true
202 202
203 sources = [ 203 sources = [
204 "accelerators/accelerator_controller_registrar_test_api.cc", 204 "accelerators/accelerator_controller_registrar_test_api.cc",
205 "accelerators/accelerator_controller_registrar_test_api.h", 205 "accelerators/accelerator_controller_registrar_test_api.h",
206 "accelerators/accelerator_controller_unittest.cc", 206 "accelerators/accelerator_controller_unittest.cc",
207 "app_launch_unittest.cc", 207 "app_launch_unittest.cc",
208 "bridge/wm_shell_mus_test_api.h", 208 "bridge/wm_shell_mus_test_api.h",
209 "root_window_controller_unittest.cc",
210 "test/ash_test_impl_mus.cc", 209 "test/ash_test_impl_mus.cc",
211 "test/ash_test_impl_mus.h", 210 "test/ash_test_impl_mus.h",
212 "test/wm_test_base.cc", 211 "test/wm_test_base.cc",
213 "test/wm_test_base.h", 212 "test/wm_test_base.h",
214 "test/wm_test_helper.cc", 213 "test/wm_test_helper.cc",
215 "test/wm_test_helper.h", 214 "test/wm_test_helper.h",
215 "top_level_window_factory_unittest.cc",
216 "window_manager_unittest.cc", 216 "window_manager_unittest.cc",
217 ] 217 ]
218 218
219 deps = [ 219 deps = [
220 ":lib", 220 ":lib",
221 ":resources", 221 ":resources",
222 "//ash", 222 "//ash",
223 "//ash/common/test:test_support", 223 "//ash/common/test:test_support",
224 "//ash/public/interfaces", 224 "//ash/public/interfaces",
225 "//ash/test:test_support_without_content", 225 "//ash/test:test_support_without_content",
(...skipping 24 matching lines...) Expand all
250 "//ui/views/mus", 250 "//ui/views/mus",
251 ] 251 ]
252 252
253 data_deps = [ 253 data_deps = [
254 ":mus", 254 ":mus",
255 "//mash/quick_launch", 255 "//mash/quick_launch",
256 ] 256 ]
257 257
258 defines = [ "NOTIMPLEMENTED_POLICY=5" ] 258 defines = [ "NOTIMPLEMENTED_POLICY=5" ]
259 } 259 }
OLDNEW
« no previous file with comments | « no previous file | ash/mus/bridge/wm_lookup_mus.h » ('j') | ash/mus/top_level_window_factory.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698