| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "move_event_handler.cc", | 43 "move_event_handler.cc", |
| 44 "move_event_handler.h", | 44 "move_event_handler.h", |
| 45 "network_connect_delegate_mus.cc", | 45 "network_connect_delegate_mus.cc", |
| 46 "network_connect_delegate_mus.h", | 46 "network_connect_delegate_mus.h", |
| 47 "non_client_frame_controller.cc", | 47 "non_client_frame_controller.cc", |
| 48 "non_client_frame_controller.h", | 48 "non_client_frame_controller.h", |
| 49 "property_util.cc", | 49 "property_util.cc", |
| 50 "property_util.h", | 50 "property_util.h", |
| 51 "screen_mus.cc", | 51 "screen_mus.cc", |
| 52 "screen_mus.h", | 52 "screen_mus.h", |
| 53 "shadow.cc", | |
| 54 "shadow.h", | |
| 55 "shadow_controller.cc", | |
| 56 "shadow_controller.h", | |
| 57 "shelf_delegate_mus.cc", | 53 "shelf_delegate_mus.cc", |
| 58 "shelf_delegate_mus.h", | 54 "shelf_delegate_mus.h", |
| 59 "shell_delegate_mus.cc", | 55 "shell_delegate_mus.cc", |
| 60 "shell_delegate_mus.h", | 56 "shell_delegate_mus.h", |
| 61 "system_tray_delegate_mus.cc", | 57 "system_tray_delegate_mus.cc", |
| 62 "system_tray_delegate_mus.h", | 58 "system_tray_delegate_mus.h", |
| 63 "top_level_window_factory.cc", | 59 "top_level_window_factory.cc", |
| 64 "top_level_window_factory.h", | 60 "top_level_window_factory.h", |
| 65 "wallpaper_delegate_mus.cc", | 61 "wallpaper_delegate_mus.cc", |
| 66 "wallpaper_delegate_mus.h", | 62 "wallpaper_delegate_mus.h", |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 "//ui/views/mus", | 239 "//ui/views/mus", |
| 244 ] | 240 ] |
| 245 | 241 |
| 246 data_deps = [ | 242 data_deps = [ |
| 247 ":mus", | 243 ":mus", |
| 248 "//mash/quick_launch", | 244 "//mash/quick_launch", |
| 249 ] | 245 ] |
| 250 | 246 |
| 251 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 247 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 252 } | 248 } |
| OLD | NEW |