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