| 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 "app_list_presenter_mus.cc", |
| 24 "app_list_presenter_mus.h", |
| 23 "bridge/immersive_handler_factory_mus.cc", | 25 "bridge/immersive_handler_factory_mus.cc", |
| 24 "bridge/immersive_handler_factory_mus.h", | 26 "bridge/immersive_handler_factory_mus.h", |
| 25 "bridge/mus_layout_manager_adapter.cc", | 27 "bridge/mus_layout_manager_adapter.cc", |
| 26 "bridge/mus_layout_manager_adapter.h", | 28 "bridge/mus_layout_manager_adapter.h", |
| 27 "bridge/wm_lookup_mus.cc", | 29 "bridge/wm_lookup_mus.cc", |
| 28 "bridge/wm_lookup_mus.h", | 30 "bridge/wm_lookup_mus.h", |
| 29 "bridge/wm_root_window_controller_mus.cc", | 31 "bridge/wm_root_window_controller_mus.cc", |
| 30 "bridge/wm_root_window_controller_mus.h", | 32 "bridge/wm_root_window_controller_mus.h", |
| 31 "bridge/wm_shelf_mus.cc", | 33 "bridge/wm_shelf_mus.cc", |
| 32 "bridge/wm_shelf_mus.h", | 34 "bridge/wm_shelf_mus.h", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "window_manager_application.h", | 83 "window_manager_application.h", |
| 82 "window_manager_observer.h", | 84 "window_manager_observer.h", |
| 83 ] | 85 ] |
| 84 | 86 |
| 85 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 87 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 86 | 88 |
| 87 deps = [ | 89 deps = [ |
| 88 "//components/user_manager", | 90 "//components/user_manager", |
| 89 "//components/wallpaper", | 91 "//components/wallpaper", |
| 90 "//ui/app_list/presenter", | 92 "//ui/app_list/presenter", |
| 93 "//ui/app_list/presenter:mojom", |
| 91 "//ui/message_center", | 94 "//ui/message_center", |
| 92 ] | 95 ] |
| 93 | 96 |
| 94 public_deps = [ | 97 public_deps = [ |
| 95 "//ash", | 98 "//ash", |
| 96 "//ash/public/interfaces", | 99 "//ash/public/interfaces", |
| 97 "//base", | 100 "//base", |
| 98 "//mash/public/interfaces", | 101 "//mash/public/interfaces", |
| 99 "//mash/session/public/interfaces", | 102 "//mash/session/public/interfaces", |
| 100 "//mojo/common:common_base", | 103 "//mojo/common:common_base", |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 "//ui/views/mus", | 238 "//ui/views/mus", |
| 236 ] | 239 ] |
| 237 | 240 |
| 238 data_deps = [ | 241 data_deps = [ |
| 239 ":mus", | 242 ":mus", |
| 240 "//mash/quick_launch", | 243 "//mash/quick_launch", |
| 241 ] | 244 ] |
| 242 | 245 |
| 243 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 246 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 244 } | 247 } |
| OLD | NEW |