| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "frame/non_client_frame_view_mash.cc", | 47 "frame/non_client_frame_view_mash.cc", |
| 48 "frame/non_client_frame_view_mash.h", | 48 "frame/non_client_frame_view_mash.h", |
| 49 "layout_manager.cc", | 49 "layout_manager.cc", |
| 50 "layout_manager.h", | 50 "layout_manager.h", |
| 51 "non_client_frame_controller.cc", | 51 "non_client_frame_controller.cc", |
| 52 "non_client_frame_controller.h", | 52 "non_client_frame_controller.h", |
| 53 "property_util.cc", | 53 "property_util.cc", |
| 54 "property_util.h", | 54 "property_util.h", |
| 55 "root_window_controller.cc", | 55 "root_window_controller.cc", |
| 56 "root_window_controller.h", | 56 "root_window_controller.h", |
| 57 "root_windows_observer.h", | |
| 58 "screenlock_layout.cc", | 57 "screenlock_layout.cc", |
| 59 "screenlock_layout.h", | 58 "screenlock_layout.h", |
| 60 "shadow.cc", | 59 "shadow.cc", |
| 61 "shadow.h", | 60 "shadow.h", |
| 62 "shadow_controller.cc", | 61 "shadow_controller.cc", |
| 63 "shadow_controller.h", | 62 "shadow_controller.h", |
| 64 "shelf_layout_impl.cc", | 63 "shelf_layout_impl.cc", |
| 65 "shelf_layout_impl.h", | 64 "shelf_layout_impl.h", |
| 66 "shelf_layout_manager.cc", | 65 "shelf_layout_manager.cc", |
| 67 "shelf_layout_manager.h", | 66 "shelf_layout_manager.h", |
| 68 "shelf_layout_manager_delegate.h", | 67 "shelf_layout_manager_delegate.h", |
| 69 "status_layout_manager.cc", | 68 "status_layout_manager.cc", |
| 70 "status_layout_manager.h", | 69 "status_layout_manager.h", |
| 71 "user_window_controller_impl.cc", | 70 "user_window_controller_impl.cc", |
| 72 "user_window_controller_impl.h", | 71 "user_window_controller_impl.h", |
| 73 "window_manager.cc", | 72 "window_manager.cc", |
| 74 "window_manager.h", | 73 "window_manager.h", |
| 75 "window_manager_application.cc", | 74 "window_manager_application.cc", |
| 76 "window_manager_application.h", | 75 "window_manager_application.h", |
| 76 "window_manager_observer.h", |
| 77 ] | 77 ] |
| 78 | 78 |
| 79 deps = [ | 79 deps = [ |
| 80 "//components/user_manager", | 80 "//components/user_manager", |
| 81 ] | 81 ] |
| 82 | 82 |
| 83 public_deps = [ | 83 public_deps = [ |
| 84 "//ash", | 84 "//ash", |
| 85 "//ash/mus/resources", | 85 "//ash/mus/resources", |
| 86 "//ash/public/interfaces", | 86 "//ash/public/interfaces", |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 "//ui/gfx/geometry", | 196 "//ui/gfx/geometry", |
| 197 "//ui/gfx/geometry/mojo", | 197 "//ui/gfx/geometry/mojo", |
| 198 "//ui/views/mus", | 198 "//ui/views/mus", |
| 199 ] | 199 ] |
| 200 | 200 |
| 201 data_deps = [ | 201 data_deps = [ |
| 202 ":mus", | 202 ":mus", |
| 203 "//mash/quick_launch", | 203 "//mash/quick_launch", |
| 204 ] | 204 ] |
| 205 } | 205 } |
| OLD | NEW |