| 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/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 import("//mojo/public/mojo_application_manifest.gni") | 7 import("//mojo/public/mojo_application_manifest.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 "screenlock_layout.h", | 58 "screenlock_layout.h", |
| 59 "shadow.cc", | 59 "shadow.cc", |
| 60 "shadow.h", | 60 "shadow.h", |
| 61 "shadow_controller.cc", | 61 "shadow_controller.cc", |
| 62 "shadow_controller.h", | 62 "shadow_controller.h", |
| 63 "shelf_layout_impl.cc", | 63 "shelf_layout_impl.cc", |
| 64 "shelf_layout_impl.h", | 64 "shelf_layout_impl.h", |
| 65 "shelf_layout_manager.cc", | 65 "shelf_layout_manager.cc", |
| 66 "shelf_layout_manager.h", | 66 "shelf_layout_manager.h", |
| 67 "shelf_layout_manager_delegate.h", | 67 "shelf_layout_manager_delegate.h", |
| 68 "shell_delegate_mus.cc", |
| 69 "shell_delegate_mus.h", |
| 68 "status_layout_manager.cc", | 70 "status_layout_manager.cc", |
| 69 "status_layout_manager.h", | 71 "status_layout_manager.h", |
| 70 "user_window_controller_impl.cc", | 72 "user_window_controller_impl.cc", |
| 71 "user_window_controller_impl.h", | 73 "user_window_controller_impl.h", |
| 72 "window_manager.cc", | 74 "window_manager.cc", |
| 73 "window_manager.h", | 75 "window_manager.h", |
| 74 "window_manager_application.cc", | 76 "window_manager_application.cc", |
| 75 "window_manager_application.h", | 77 "window_manager_application.h", |
| 76 "window_manager_observer.h", | 78 "window_manager_observer.h", |
| 77 ] | 79 ] |
| 78 | 80 |
| 79 deps = [ | 81 deps = [ |
| 80 "//components/user_manager", | 82 "//components/user_manager", |
| 83 "//ui/app_list/presenter", |
| 81 ] | 84 ] |
| 82 | 85 |
| 83 public_deps = [ | 86 public_deps = [ |
| 84 "//ash", | 87 "//ash", |
| 85 "//ash/mus/resources", | 88 "//ash/mus/resources", |
| 86 "//ash/public/interfaces", | 89 "//ash/public/interfaces", |
| 87 "//base", | 90 "//base", |
| 88 "//mash/session/public/interfaces", | 91 "//mash/session/public/interfaces", |
| 89 "//mojo/common:common_base", | 92 "//mojo/common:common_base", |
| 90 "//services/shell/public/cpp", | 93 "//services/shell/public/cpp", |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 "//ui/gfx/geometry", | 203 "//ui/gfx/geometry", |
| 201 "//ui/gfx/geometry/mojo", | 204 "//ui/gfx/geometry/mojo", |
| 202 "//ui/views/mus", | 205 "//ui/views/mus", |
| 203 ] | 206 ] |
| 204 | 207 |
| 205 data_deps = [ | 208 data_deps = [ |
| 206 ":mus", | 209 ":mus", |
| 207 "//mash/quick_launch", | 210 "//mash/quick_launch", |
| 208 ] | 211 ] |
| 209 } | 212 } |
| OLD | NEW |