| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 "screenlock_layout.cc", | 70 "screenlock_layout.cc", |
| 71 "screenlock_layout.h", | 71 "screenlock_layout.h", |
| 72 "shadow.cc", | 72 "shadow.cc", |
| 73 "shadow.h", | 73 "shadow.h", |
| 74 "shadow_controller.cc", | 74 "shadow_controller.cc", |
| 75 "shadow_controller.h", | 75 "shadow_controller.h", |
| 76 "shelf_delegate_mus.cc", | 76 "shelf_delegate_mus.cc", |
| 77 "shelf_delegate_mus.h", | 77 "shelf_delegate_mus.h", |
| 78 "shell_delegate_mus.cc", | 78 "shell_delegate_mus.cc", |
| 79 "shell_delegate_mus.h", | 79 "shell_delegate_mus.h", |
| 80 "system_tray_delegate_mus.cc", |
| 81 "system_tray_delegate_mus.h", |
| 80 "wallpaper_delegate_mus.cc", | 82 "wallpaper_delegate_mus.cc", |
| 81 "wallpaper_delegate_mus.h", | 83 "wallpaper_delegate_mus.h", |
| 82 "window_manager.cc", | 84 "window_manager.cc", |
| 83 "window_manager.h", | 85 "window_manager.h", |
| 84 "window_manager_application.cc", | 86 "window_manager_application.cc", |
| 85 "window_manager_application.h", | 87 "window_manager_application.h", |
| 86 "window_manager_observer.h", | 88 "window_manager_observer.h", |
| 87 ] | 89 ] |
| 88 | 90 |
| 89 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 91 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 90 | 92 |
| 91 deps = [ | 93 deps = [ |
| 92 "//components/user_manager", | 94 "//components/user_manager", |
| 93 "//components/wallpaper", | 95 "//components/wallpaper", |
| 94 "//ui/app_list/presenter", | 96 "//ui/app_list/presenter", |
| 95 "//ui/app_list/presenter:mojom", | 97 "//ui/app_list/presenter:mojom", |
| 96 "//ui/keyboard:mojom", | 98 "//ui/keyboard:mojom", |
| 97 "//ui/message_center", | 99 "//ui/message_center", |
| 98 ] | 100 ] |
| 99 | 101 |
| 100 public_deps = [ | 102 public_deps = [ |
| 101 "//ash", | 103 "//ash", |
| 102 "//ash/public/interfaces", | 104 "//ash/public/interfaces", |
| 103 "//base", | 105 "//base", |
| 106 "//base:i18n", |
| 104 "//mash/public/interfaces", | 107 "//mash/public/interfaces", |
| 105 "//mash/session/public/interfaces", | 108 "//mash/session/public/interfaces", |
| 106 "//mojo/common:common_base", | 109 "//mojo/common:common_base", |
| 107 "//services/shell/public/cpp", | 110 "//services/shell/public/cpp", |
| 108 "//services/tracing/public/cpp", | 111 "//services/tracing/public/cpp", |
| 109 "//services/ui/common:mus_common", | 112 "//services/ui/common:mus_common", |
| 110 "//services/ui/public/cpp", | 113 "//services/ui/public/cpp", |
| 111 "//services/ui/public/interfaces", | 114 "//services/ui/public/interfaces", |
| 112 "//services/ui/public/interfaces/display", | 115 "//services/ui/public/interfaces/display", |
| 113 "//skia", | 116 "//skia", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 "//ui/views/mus", | 243 "//ui/views/mus", |
| 241 ] | 244 ] |
| 242 | 245 |
| 243 data_deps = [ | 246 data_deps = [ |
| 244 ":mus", | 247 ":mus", |
| 245 "//mash/quick_launch", | 248 "//mash/quick_launch", |
| 246 ] | 249 ] |
| 247 | 250 |
| 248 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 251 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 249 } | 252 } |
| OLD | NEW |