| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 "screenlock_layout.cc", | 70 "screenlock_layout.cc", |
| 71 "screenlock_layout.h", | 71 "screenlock_layout.h", |
| 72 "shadow.cc", | 72 "shadow.cc", |
| 73 "shadow.h", | 73 "shadow.h", |
| 74 "shadow_controller.cc", | 74 "shadow_controller.cc", |
| 75 "shadow_controller.h", | 75 "shadow_controller.h", |
| 76 "shelf_delegate_mus.cc", | 76 "shelf_delegate_mus.cc", |
| 77 "shelf_delegate_mus.h", | 77 "shelf_delegate_mus.h", |
| 78 "shell_delegate_mus.cc", | 78 "shell_delegate_mus.cc", |
| 79 "shell_delegate_mus.h", | 79 "shell_delegate_mus.h", |
| 80 "system_tray_delegate_mus.cc", | |
| 81 "system_tray_delegate_mus.h", | |
| 82 "wallpaper_delegate_mus.cc", | 80 "wallpaper_delegate_mus.cc", |
| 83 "wallpaper_delegate_mus.h", | 81 "wallpaper_delegate_mus.h", |
| 84 "window_manager.cc", | 82 "window_manager.cc", |
| 85 "window_manager.h", | 83 "window_manager.h", |
| 86 "window_manager_application.cc", | 84 "window_manager_application.cc", |
| 87 "window_manager_application.h", | 85 "window_manager_application.h", |
| 88 "window_manager_observer.h", | 86 "window_manager_observer.h", |
| 89 ] | 87 ] |
| 90 | 88 |
| 91 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 89 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 "//ui/views/mus", | 263 "//ui/views/mus", |
| 266 ] | 264 ] |
| 267 | 265 |
| 268 data_deps = [ | 266 data_deps = [ |
| 269 ":mus", | 267 ":mus", |
| 270 "//mash/quick_launch", | 268 "//mash/quick_launch", |
| 271 ] | 269 ] |
| 272 | 270 |
| 273 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 271 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 274 } | 272 } |
| OLD | NEW |