| 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 |
| 11 source_set("lib") { | 11 source_set("lib") { |
| 12 sources = [ | 12 sources = [ |
| 13 "accelerators/accelerator_controller_delegate_mus.cc", | 13 "accelerators/accelerator_controller_delegate_mus.cc", |
| 14 "accelerators/accelerator_controller_delegate_mus.h", | 14 "accelerators/accelerator_controller_delegate_mus.h", |
| 15 "accelerators/accelerator_controller_registrar.cc", | 15 "accelerators/accelerator_controller_registrar.cc", |
| 16 "accelerators/accelerator_controller_registrar.h", | 16 "accelerators/accelerator_controller_registrar.h", |
| 17 "accelerators/accelerator_handler.h", | 17 "accelerators/accelerator_handler.h", |
| 18 "accelerators/accelerator_ids.h", | 18 "accelerators/accelerator_ids.h", |
| 19 "accelerators/accelerator_registrar_impl.cc", | 19 "accelerators/accelerator_registrar_impl.cc", |
| 20 "accelerators/accelerator_registrar_impl.h", | 20 "accelerators/accelerator_registrar_impl.h", |
| 21 "accessibility_delegate_mus.cc", | 21 "accessibility_delegate_mus.cc", |
| 22 "accessibility_delegate_mus.h", | 22 "accessibility_delegate_mus.h", |
| 23 "bridge/immersive_handler_factory_mus.cc", |
| 24 "bridge/immersive_handler_factory_mus.h", |
| 23 "bridge/mus_layout_manager_adapter.cc", | 25 "bridge/mus_layout_manager_adapter.cc", |
| 24 "bridge/mus_layout_manager_adapter.h", | 26 "bridge/mus_layout_manager_adapter.h", |
| 25 "bridge/wm_lookup_mus.cc", | 27 "bridge/wm_lookup_mus.cc", |
| 26 "bridge/wm_lookup_mus.h", | 28 "bridge/wm_lookup_mus.h", |
| 27 "bridge/wm_root_window_controller_mus.cc", | 29 "bridge/wm_root_window_controller_mus.cc", |
| 28 "bridge/wm_root_window_controller_mus.h", | 30 "bridge/wm_root_window_controller_mus.h", |
| 29 "bridge/wm_shelf_mus.cc", | 31 "bridge/wm_shelf_mus.cc", |
| 30 "bridge/wm_shelf_mus.h", | 32 "bridge/wm_shelf_mus.h", |
| 31 "bridge/wm_shell_mus.cc", | 33 "bridge/wm_shell_mus.cc", |
| 32 "bridge/wm_shell_mus.h", | 34 "bridge/wm_shell_mus.h", |
| 33 "bridge/wm_window_mus.cc", | 35 "bridge/wm_window_mus.cc", |
| 34 "bridge/wm_window_mus.h", | 36 "bridge/wm_window_mus.h", |
| 35 "container_ids.cc", | 37 "container_ids.cc", |
| 36 "container_ids.h", | 38 "container_ids.h", |
| 37 "disconnected_app_handler.cc", | 39 "disconnected_app_handler.cc", |
| 38 "disconnected_app_handler.h", | 40 "disconnected_app_handler.h", |
| 39 "drag_window_resizer.cc", | 41 "drag_window_resizer.cc", |
| 40 "drag_window_resizer.h", | 42 "drag_window_resizer.h", |
| 43 "frame/custom_frame_view_mus.cc", |
| 44 "frame/custom_frame_view_mus.h", |
| 45 "frame/detached_title_area_renderer.cc", |
| 46 "frame/detached_title_area_renderer.h", |
| 47 "frame/detached_title_area_renderer_host.h", |
| 41 "layout_manager.cc", | 48 "layout_manager.cc", |
| 42 "layout_manager.h", | 49 "layout_manager.h", |
| 43 "move_event_handler.cc", | 50 "move_event_handler.cc", |
| 44 "move_event_handler.h", | 51 "move_event_handler.h", |
| 45 "new_window_delegate_mus.cc", | 52 "new_window_delegate_mus.cc", |
| 46 "new_window_delegate_mus.h", | 53 "new_window_delegate_mus.h", |
| 47 "non_client_frame_controller.cc", | 54 "non_client_frame_controller.cc", |
| 48 "non_client_frame_controller.h", | 55 "non_client_frame_controller.h", |
| 49 "property_util.cc", | 56 "property_util.cc", |
| 50 "property_util.h", | 57 "property_util.h", |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 "//ui/gfx/geometry/mojo", | 218 "//ui/gfx/geometry/mojo", |
| 212 "//ui/message_center", | 219 "//ui/message_center", |
| 213 "//ui/views/mus", | 220 "//ui/views/mus", |
| 214 ] | 221 ] |
| 215 | 222 |
| 216 data_deps = [ | 223 data_deps = [ |
| 217 ":mus", | 224 ":mus", |
| 218 "//mash/quick_launch", | 225 "//mash/quick_launch", |
| 219 ] | 226 ] |
| 220 } | 227 } |
| OLD | NEW |