| 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/service_manager/public/cpp/service.gni") | 7 import("//services/service_manager/public/cpp/service.gni") |
| 8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 "move_event_handler.cc", | 39 "move_event_handler.cc", |
| 40 "move_event_handler.h", | 40 "move_event_handler.h", |
| 41 "network_connect_delegate_mus.cc", | 41 "network_connect_delegate_mus.cc", |
| 42 "network_connect_delegate_mus.h", | 42 "network_connect_delegate_mus.h", |
| 43 "non_client_frame_controller.cc", | 43 "non_client_frame_controller.cc", |
| 44 "non_client_frame_controller.h", | 44 "non_client_frame_controller.h", |
| 45 "property_util.cc", | 45 "property_util.cc", |
| 46 "property_util.h", | 46 "property_util.h", |
| 47 "screen_mus.cc", | 47 "screen_mus.cc", |
| 48 "screen_mus.h", | 48 "screen_mus.h", |
| 49 "shelf_delegate_mus.cc", | |
| 50 "shelf_delegate_mus.h", | |
| 51 "shell_delegate_mus.cc", | 49 "shell_delegate_mus.cc", |
| 52 "shell_delegate_mus.h", | 50 "shell_delegate_mus.h", |
| 53 "system_tray_delegate_mus.cc", | 51 "system_tray_delegate_mus.cc", |
| 54 "system_tray_delegate_mus.h", | 52 "system_tray_delegate_mus.h", |
| 55 "top_level_window_factory.cc", | 53 "top_level_window_factory.cc", |
| 56 "top_level_window_factory.h", | 54 "top_level_window_factory.h", |
| 57 "wallpaper_delegate_mus.cc", | 55 "wallpaper_delegate_mus.cc", |
| 58 "wallpaper_delegate_mus.h", | 56 "wallpaper_delegate_mus.h", |
| 59 "window_manager.cc", | 57 "window_manager.cc", |
| 60 "window_manager.h", | 58 "window_manager.h", |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 "//ui/views/mus", | 231 "//ui/views/mus", |
| 234 ] | 232 ] |
| 235 | 233 |
| 236 data_deps = [ | 234 data_deps = [ |
| 237 ":mus", | 235 ":mus", |
| 238 "//mash/quick_launch", | 236 "//mash/quick_launch", |
| 239 ] | 237 ] |
| 240 | 238 |
| 241 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 239 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 242 } | 240 } |
| OLD | NEW |