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_manager.cc", | 59 "shelf_delegate_mus.cc", |
60 "shelf_layout_manager.h", | 60 "shelf_delegate_mus.h", |
61 "shelf_layout_manager_delegate.h", | |
62 "shell_delegate_mus.cc", | 61 "shell_delegate_mus.cc", |
63 "shell_delegate_mus.h", | 62 "shell_delegate_mus.h", |
64 "window_manager.cc", | 63 "window_manager.cc", |
65 "window_manager.h", | 64 "window_manager.h", |
66 "window_manager_application.cc", | 65 "window_manager_application.cc", |
67 "window_manager_application.h", | 66 "window_manager_application.h", |
68 "window_manager_observer.h", | 67 "window_manager_observer.h", |
69 ] | 68 ] |
70 | 69 |
71 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 70 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
72 | 71 |
73 deps = [ | 72 deps = [ |
74 "//components/user_manager", | 73 "//components/user_manager", |
75 "//mash/shelf/public/interfaces", | |
76 "//ui/app_list/presenter", | 74 "//ui/app_list/presenter", |
77 "//ui/message_center", | 75 "//ui/message_center", |
78 ] | 76 ] |
79 | 77 |
80 public_deps = [ | 78 public_deps = [ |
81 "//ash", | 79 "//ash", |
82 "//ash/public/interfaces", | 80 "//ash/public/interfaces", |
83 "//base", | 81 "//base", |
84 "//mash/session/public/interfaces", | 82 "//mash/session/public/interfaces", |
85 "//mojo/common:common_base", | 83 "//mojo/common:common_base", |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 "//ui/gfx/geometry/mojo", | 209 "//ui/gfx/geometry/mojo", |
212 "//ui/message_center", | 210 "//ui/message_center", |
213 "//ui/views/mus", | 211 "//ui/views/mus", |
214 ] | 212 ] |
215 | 213 |
216 data_deps = [ | 214 data_deps = [ |
217 ":mus", | 215 ":mus", |
218 "//mash/quick_launch", | 216 "//mash/quick_launch", |
219 ] | 217 ] |
220 } | 218 } |
OLD | NEW |