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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 "property_util.cc", | 53 "property_util.cc", |
54 "property_util.h", | 54 "property_util.h", |
55 "root_window_controller.cc", | 55 "root_window_controller.cc", |
56 "root_window_controller.h", | 56 "root_window_controller.h", |
57 "screenlock_layout.cc", | 57 "screenlock_layout.cc", |
58 "screenlock_layout.h", | 58 "screenlock_layout.h", |
59 "shadow.cc", | 59 "shadow.cc", |
60 "shadow.h", | 60 "shadow.h", |
61 "shadow_controller.cc", | 61 "shadow_controller.cc", |
62 "shadow_controller.h", | 62 "shadow_controller.h", |
63 "shelf_layout_manager.cc", | 63 "shelf_delegate_mus.cc", |
64 "shelf_layout_manager.h", | 64 "shelf_delegate_mus.h", |
65 "shelf_layout_manager_delegate.h", | |
66 "shell_delegate_mus.cc", | 65 "shell_delegate_mus.cc", |
67 "shell_delegate_mus.h", | 66 "shell_delegate_mus.h", |
68 "window_manager.cc", | 67 "window_manager.cc", |
69 "window_manager.h", | 68 "window_manager.h", |
70 "window_manager_application.cc", | 69 "window_manager_application.cc", |
71 "window_manager_application.h", | 70 "window_manager_application.h", |
72 "window_manager_observer.h", | 71 "window_manager_observer.h", |
73 ] | 72 ] |
74 | 73 |
75 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 74 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
76 | 75 |
77 deps = [ | 76 deps = [ |
78 "//components/user_manager", | 77 "//components/user_manager", |
79 "//mash/shelf/public/interfaces", | |
80 "//ui/app_list/presenter", | 78 "//ui/app_list/presenter", |
81 "//ui/message_center", | 79 "//ui/message_center", |
82 ] | 80 ] |
83 | 81 |
84 public_deps = [ | 82 public_deps = [ |
85 "//ash", | 83 "//ash", |
86 "//ash/public/interfaces", | 84 "//ash/public/interfaces", |
87 "//base", | 85 "//base", |
88 "//mash/session/public/interfaces", | 86 "//mash/session/public/interfaces", |
89 "//mojo/common:common_base", | 87 "//mojo/common:common_base", |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 "//ui/views/mus", | 215 "//ui/views/mus", |
218 ] | 216 ] |
219 | 217 |
220 data_deps = [ | 218 data_deps = [ |
221 ":mus", | 219 ":mus", |
222 "//mash/quick_launch", | 220 "//mash/quick_launch", |
223 ] | 221 ] |
224 | 222 |
225 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 223 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
226 } | 224 } |
OLD | NEW |