| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_layout_manager.cc", |
| 60 "shelf_layout_manager.h", | 60 "shelf_layout_manager.h", |
| 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 "status_layout_manager.cc", | |
| 65 "status_layout_manager.h", | |
| 66 "window_manager.cc", | 64 "window_manager.cc", |
| 67 "window_manager.h", | 65 "window_manager.h", |
| 68 "window_manager_application.cc", | 66 "window_manager_application.cc", |
| 69 "window_manager_application.h", | 67 "window_manager_application.h", |
| 70 "window_manager_observer.h", | 68 "window_manager_observer.h", |
| 71 ] | 69 ] |
| 72 | 70 |
| 73 deps = [ | 71 deps = [ |
| 74 "//components/user_manager", | 72 "//components/user_manager", |
| 75 "//mash/shelf/public/interfaces", | 73 "//mash/shelf/public/interfaces", |
| (...skipping 135 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 |