| 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 14 matching lines...) Expand all Loading... |
| 25 "bridge/immersive_handler_factory_mus.cc", | 25 "bridge/immersive_handler_factory_mus.cc", |
| 26 "bridge/immersive_handler_factory_mus.h", | 26 "bridge/immersive_handler_factory_mus.h", |
| 27 "bridge/shell_port_mash.cc", | 27 "bridge/shell_port_mash.cc", |
| 28 "bridge/shell_port_mash.h", | 28 "bridge/shell_port_mash.h", |
| 29 "bridge/workspace_event_handler_mus.cc", | 29 "bridge/workspace_event_handler_mus.cc", |
| 30 "bridge/workspace_event_handler_mus.h", | 30 "bridge/workspace_event_handler_mus.h", |
| 31 "context_menu_mus.cc", | 31 "context_menu_mus.cc", |
| 32 "context_menu_mus.h", | 32 "context_menu_mus.h", |
| 33 "disconnected_app_handler.cc", | 33 "disconnected_app_handler.cc", |
| 34 "disconnected_app_handler.h", | 34 "disconnected_app_handler.h", |
| 35 "display_synchronizer.cc", |
| 36 "display_synchronizer.h", |
| 35 "drag_window_resizer.cc", | 37 "drag_window_resizer.cc", |
| 36 "drag_window_resizer.h", | 38 "drag_window_resizer.h", |
| 37 "frame/detached_title_area_renderer.cc", | 39 "frame/detached_title_area_renderer.cc", |
| 38 "frame/detached_title_area_renderer.h", | 40 "frame/detached_title_area_renderer.h", |
| 39 "keyboard_ui_mus.cc", | 41 "keyboard_ui_mus.cc", |
| 40 "keyboard_ui_mus.h", | 42 "keyboard_ui_mus.h", |
| 41 "move_event_handler.cc", | 43 "move_event_handler.cc", |
| 42 "move_event_handler.h", | 44 "move_event_handler.h", |
| 43 "network_connect_delegate_mus.cc", | 45 "network_connect_delegate_mus.cc", |
| 44 "network_connect_delegate_mus.h", | 46 "network_connect_delegate_mus.h", |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 "//ui/views/mus", | 234 "//ui/views/mus", |
| 233 ] | 235 ] |
| 234 | 236 |
| 235 data_deps = [ | 237 data_deps = [ |
| 236 ":mus", | 238 ":mus", |
| 237 "//mash/quick_launch", | 239 "//mash/quick_launch", |
| 238 ] | 240 ] |
| 239 | 241 |
| 240 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 242 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 241 } | 243 } |
| OLD | NEW |