| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "screenlock_layout.cc", | 62 "screenlock_layout.cc", |
| 63 "screenlock_layout.h", | 63 "screenlock_layout.h", |
| 64 "shadow.cc", | 64 "shadow.cc", |
| 65 "shadow.h", | 65 "shadow.h", |
| 66 "shadow_controller.cc", | 66 "shadow_controller.cc", |
| 67 "shadow_controller.h", | 67 "shadow_controller.h", |
| 68 "shelf_layout_impl.cc", | 68 "shelf_layout_impl.cc", |
| 69 "shelf_layout_impl.h", | 69 "shelf_layout_impl.h", |
| 70 "shelf_layout_manager.cc", | 70 "shelf_layout_manager.cc", |
| 71 "shelf_layout_manager.h", | 71 "shelf_layout_manager.h", |
| 72 "shelf_layout_manager_delegate.h", |
| 72 "status_layout_manager.cc", | 73 "status_layout_manager.cc", |
| 73 "status_layout_manager.h", | 74 "status_layout_manager.h", |
| 74 "user_window_controller_impl.cc", | 75 "user_window_controller_impl.cc", |
| 75 "user_window_controller_impl.h", | 76 "user_window_controller_impl.h", |
| 76 "window_manager.cc", | 77 "window_manager.cc", |
| 77 "window_manager.h", | 78 "window_manager.h", |
| 78 "window_manager_application.cc", | 79 "window_manager_application.cc", |
| 79 "window_manager_application.h", | 80 "window_manager_application.h", |
| 80 ] | 81 ] |
| 81 | 82 |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 "//ui/mojo/geometry:interfaces", | 201 "//ui/mojo/geometry:interfaces", |
| 201 "//ui/mojo/geometry:util", | 202 "//ui/mojo/geometry:util", |
| 202 "//ui/views/mus", | 203 "//ui/views/mus", |
| 203 ] | 204 ] |
| 204 | 205 |
| 205 data_deps = [ | 206 data_deps = [ |
| 206 ":wm", | 207 ":wm", |
| 207 "//mash/quick_launch", | 208 "//mash/quick_launch", |
| 208 ] | 209 ] |
| 209 } | 210 } |
| OLD | NEW |