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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 "property_util.h", | 44 "property_util.h", |
45 "root_window_controller.cc", | 45 "root_window_controller.cc", |
46 "root_window_controller.h", | 46 "root_window_controller.h", |
47 "root_windows_observer.h", | 47 "root_windows_observer.h", |
48 "screenlock_layout.cc", | 48 "screenlock_layout.cc", |
49 "screenlock_layout.h", | 49 "screenlock_layout.h", |
50 "shadow.cc", | 50 "shadow.cc", |
51 "shadow.h", | 51 "shadow.h", |
52 "shadow_controller.cc", | 52 "shadow_controller.cc", |
53 "shadow_controller.h", | 53 "shadow_controller.h", |
54 "shelf_layout.cc", | 54 "shelf_layout_impl.cc", |
55 "shelf_layout.h", | 55 "shelf_layout_impl.h", |
| 56 "shelf_layout_manager.cc", |
| 57 "shelf_layout_manager.h", |
| 58 "status_layout_manager.cc", |
| 59 "status_layout_manager.h", |
56 "user_window_controller_impl.cc", | 60 "user_window_controller_impl.cc", |
57 "user_window_controller_impl.h", | 61 "user_window_controller_impl.h", |
58 "window_layout.cc", | 62 "window_layout.cc", |
59 "window_layout.h", | 63 "window_layout.h", |
60 "window_manager.cc", | 64 "window_manager.cc", |
61 "window_manager.h", | 65 "window_manager.h", |
62 "window_manager_application.cc", | 66 "window_manager_application.cc", |
63 "window_manager_application.h", | 67 "window_manager_application.h", |
64 ] | 68 ] |
65 | 69 |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 "//ui/gfx/geometry", | 171 "//ui/gfx/geometry", |
168 "//ui/mojo/geometry:interfaces", | 172 "//ui/mojo/geometry:interfaces", |
169 "//ui/mojo/geometry:util", | 173 "//ui/mojo/geometry:util", |
170 ] | 174 ] |
171 | 175 |
172 data_deps = [ | 176 data_deps = [ |
173 ":wm", | 177 ":wm", |
174 "//mash/quick_launch", | 178 "//mash/quick_launch", |
175 ] | 179 ] |
176 } | 180 } |
OLD | NEW |