| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "screenlock_layout.cc", | 66 "screenlock_layout.cc", |
| 67 "screenlock_layout.h", | 67 "screenlock_layout.h", |
| 68 "shadow.cc", | 68 "shadow.cc", |
| 69 "shadow.h", | 69 "shadow.h", |
| 70 "shadow_controller.cc", | 70 "shadow_controller.cc", |
| 71 "shadow_controller.h", | 71 "shadow_controller.h", |
| 72 "shelf_delegate_mus.cc", | 72 "shelf_delegate_mus.cc", |
| 73 "shelf_delegate_mus.h", | 73 "shelf_delegate_mus.h", |
| 74 "shell_delegate_mus.cc", | 74 "shell_delegate_mus.cc", |
| 75 "shell_delegate_mus.h", | 75 "shell_delegate_mus.h", |
| 76 "wallpaper_delegate_mus.cc", |
| 77 "wallpaper_delegate_mus.h", |
| 76 "window_manager.cc", | 78 "window_manager.cc", |
| 77 "window_manager.h", | 79 "window_manager.h", |
| 78 "window_manager_application.cc", | 80 "window_manager_application.cc", |
| 79 "window_manager_application.h", | 81 "window_manager_application.h", |
| 80 "window_manager_observer.h", | 82 "window_manager_observer.h", |
| 81 ] | 83 ] |
| 82 | 84 |
| 83 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 85 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 84 | 86 |
| 85 deps = [ | 87 deps = [ |
| 86 "//components/user_manager", | 88 "//components/user_manager", |
| 89 "//components/wallpaper", |
| 87 "//ui/app_list/presenter", | 90 "//ui/app_list/presenter", |
| 88 "//ui/message_center", | 91 "//ui/message_center", |
| 89 ] | 92 ] |
| 90 | 93 |
| 91 public_deps = [ | 94 public_deps = [ |
| 92 "//ash", | 95 "//ash", |
| 93 "//ash/public/interfaces", | 96 "//ash/public/interfaces", |
| 94 "//base", | 97 "//base", |
| 95 "//mash/public/interfaces", | 98 "//mash/public/interfaces", |
| 96 "//mash/session/public/interfaces", | 99 "//mash/session/public/interfaces", |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "//ui/views/mus", | 234 "//ui/views/mus", |
| 232 ] | 235 ] |
| 233 | 236 |
| 234 data_deps = [ | 237 data_deps = [ |
| 235 ":mus", | 238 ":mus", |
| 236 "//mash/quick_launch", | 239 "//mash/quick_launch", |
| 237 ] | 240 ] |
| 238 | 241 |
| 239 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 242 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 240 } | 243 } |
| OLD | NEW |