| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "property_util.cc", | 49 "property_util.cc", |
| 50 "property_util.h", | 50 "property_util.h", |
| 51 "root_window_controller.cc", | 51 "root_window_controller.cc", |
| 52 "root_window_controller.h", | 52 "root_window_controller.h", |
| 53 "screenlock_layout.cc", | 53 "screenlock_layout.cc", |
| 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_delegate_mus.cc", |
| 60 "shelf_layout_manager.h", | 60 "shelf_delegate_mus.h", |
| 61 "shelf_layout_manager_delegate.h", | |
| 62 "shell_delegate_mus.cc", | 61 "shell_delegate_mus.cc", |
| 63 "shell_delegate_mus.h", | 62 "shell_delegate_mus.h", |
| 64 "window_manager.cc", | 63 "window_manager.cc", |
| 65 "window_manager.h", | 64 "window_manager.h", |
| 66 "window_manager_application.cc", | 65 "window_manager_application.cc", |
| 67 "window_manager_application.h", | 66 "window_manager_application.h", |
| 68 "window_manager_observer.h", | 67 "window_manager_observer.h", |
| 69 ] | 68 ] |
| 70 | 69 |
| 71 deps = [ | 70 deps = [ |
| 72 "//components/user_manager", | 71 "//components/user_manager", |
| 73 "//mash/shelf/public/interfaces", | |
| 74 "//ui/app_list/presenter", | 72 "//ui/app_list/presenter", |
| 75 "//ui/message_center", | 73 "//ui/message_center", |
| 76 ] | 74 ] |
| 77 | 75 |
| 78 public_deps = [ | 76 public_deps = [ |
| 79 "//ash", | 77 "//ash", |
| 80 "//ash/public/interfaces", | 78 "//ash/public/interfaces", |
| 81 "//base", | 79 "//base", |
| 82 "//mash/session/public/interfaces", | 80 "//mash/session/public/interfaces", |
| 83 "//mojo/common:common_base", | 81 "//mojo/common:common_base", |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 "//ui/gfx/geometry/mojo", | 207 "//ui/gfx/geometry/mojo", |
| 210 "//ui/message_center", | 208 "//ui/message_center", |
| 211 "//ui/views/mus", | 209 "//ui/views/mus", |
| 212 ] | 210 ] |
| 213 | 211 |
| 214 data_deps = [ | 212 data_deps = [ |
| 215 ":mus", | 213 ":mus", |
| 216 "//mash/quick_launch", | 214 "//mash/quick_launch", |
| 217 ] | 215 ] |
| 218 } | 216 } |
| OLD | NEW |