OLD | NEW |
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/shell/public/cpp/service.gni") | 7 import("//services/shell/public/cpp/service.gni") |
8 import("//services/shell/public/service_manifest.gni") | 8 import("//services/shell/public/service_manifest.gni") |
9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
10 | 10 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 "property_util.cc", | 49 "property_util.cc", |
50 "property_util.h", | 50 "property_util.h", |
51 "root_window_controller.cc", | 51 "root_window_controller.cc", |
52 "root_window_controller.h", | 52 "root_window_controller.h", |
53 "screenlock_layout.cc", | 53 "screenlock_layout.cc", |
54 "screenlock_layout.h", | 54 "screenlock_layout.h", |
55 "shadow.cc", | 55 "shadow.cc", |
56 "shadow.h", | 56 "shadow.h", |
57 "shadow_controller.cc", | 57 "shadow_controller.cc", |
58 "shadow_controller.h", | 58 "shadow_controller.h", |
59 "shelf_layout_impl.cc", | |
60 "shelf_layout_impl.h", | |
61 "shelf_layout_manager.cc", | 59 "shelf_layout_manager.cc", |
62 "shelf_layout_manager.h", | 60 "shelf_layout_manager.h", |
63 "shelf_layout_manager_delegate.h", | 61 "shelf_layout_manager_delegate.h", |
64 "shell_delegate_mus.cc", | 62 "shell_delegate_mus.cc", |
65 "shell_delegate_mus.h", | 63 "shell_delegate_mus.h", |
66 "status_layout_manager.cc", | 64 "status_layout_manager.cc", |
67 "status_layout_manager.h", | 65 "status_layout_manager.h", |
68 "user_window_controller_impl.cc", | |
69 "user_window_controller_impl.h", | |
70 "window_manager.cc", | 66 "window_manager.cc", |
71 "window_manager.h", | 67 "window_manager.h", |
72 "window_manager_application.cc", | 68 "window_manager_application.cc", |
73 "window_manager_application.h", | 69 "window_manager_application.h", |
74 "window_manager_observer.h", | 70 "window_manager_observer.h", |
75 ] | 71 ] |
76 | 72 |
77 deps = [ | 73 deps = [ |
78 "//components/user_manager", | 74 "//components/user_manager", |
| 75 "//mash/shelf/public/interfaces", |
79 "//ui/app_list/presenter", | 76 "//ui/app_list/presenter", |
80 "//ui/message_center", | 77 "//ui/message_center", |
81 ] | 78 ] |
82 | 79 |
83 public_deps = [ | 80 public_deps = [ |
84 "//ash", | 81 "//ash", |
85 "//ash/public/interfaces", | 82 "//ash/public/interfaces", |
86 "//base", | 83 "//base", |
87 "//mash/session/public/interfaces", | 84 "//mash/session/public/interfaces", |
88 "//mojo/common:common_base", | 85 "//mojo/common:common_base", |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 "//ui/gfx/geometry/mojo", | 211 "//ui/gfx/geometry/mojo", |
215 "//ui/message_center", | 212 "//ui/message_center", |
216 "//ui/views/mus", | 213 "//ui/views/mus", |
217 ] | 214 ] |
218 | 215 |
219 data_deps = [ | 216 data_deps = [ |
220 ":mus", | 217 ":mus", |
221 "//mash/quick_launch", | 218 "//mash/quick_launch", |
222 ] | 219 ] |
223 } | 220 } |
OLD | NEW |