| 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", |
| 80 "wallpaper_delegate_mus.cc", | 82 "wallpaper_delegate_mus.cc", |
| 81 "wallpaper_delegate_mus.h", | 83 "wallpaper_delegate_mus.h", |
| 82 "window_manager.cc", | 84 "window_manager.cc", |
| 83 "window_manager.h", | 85 "window_manager.h", |
| 84 "window_manager_application.cc", | 86 "window_manager_application.cc", |
| 85 "window_manager_application.h", | 87 "window_manager_application.h", |
| 86 "window_manager_observer.h", | 88 "window_manager_observer.h", |
| 87 ] | 89 ] |
| 88 | 90 |
| 89 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 91 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 "//ui/views/mus", | 242 "//ui/views/mus", |
| 241 ] | 243 ] |
| 242 | 244 |
| 243 data_deps = [ | 245 data_deps = [ |
| 244 ":mus", | 246 ":mus", |
| 245 "//mash/quick_launch", | 247 "//mash/quick_launch", |
| 246 ] | 248 ] |
| 247 | 249 |
| 248 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 250 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 249 } | 251 } |
| OLD | NEW |