| 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 |
| 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", | |
| 20 "accelerators/accelerator_registrar_impl.h", | |
| 21 "accessibility_delegate_mus.cc", | 19 "accessibility_delegate_mus.cc", |
| 22 "accessibility_delegate_mus.h", | 20 "accessibility_delegate_mus.h", |
| 23 "app_list_presenter_mus.cc", | 21 "app_list_presenter_mus.cc", |
| 24 "app_list_presenter_mus.h", | 22 "app_list_presenter_mus.h", |
| 25 "bridge/immersive_handler_factory_mus.cc", | 23 "bridge/immersive_handler_factory_mus.cc", |
| 26 "bridge/immersive_handler_factory_mus.h", | 24 "bridge/immersive_handler_factory_mus.h", |
| 27 "bridge/mus_layout_manager_adapter.cc", | 25 "bridge/mus_layout_manager_adapter.cc", |
| 28 "bridge/mus_layout_manager_adapter.h", | 26 "bridge/mus_layout_manager_adapter.h", |
| 29 "bridge/wm_lookup_mus.cc", | 27 "bridge/wm_lookup_mus.cc", |
| 30 "bridge/wm_lookup_mus.h", | 28 "bridge/wm_lookup_mus.h", |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 } | 227 } |
| 230 } | 228 } |
| 231 | 229 |
| 232 source_set("unittests") { | 230 source_set("unittests") { |
| 233 testonly = true | 231 testonly = true |
| 234 | 232 |
| 235 sources = [ | 233 sources = [ |
| 236 "accelerators/accelerator_controller_registrar_test_api.cc", | 234 "accelerators/accelerator_controller_registrar_test_api.cc", |
| 237 "accelerators/accelerator_controller_registrar_test_api.h", | 235 "accelerators/accelerator_controller_registrar_test_api.h", |
| 238 "accelerators/accelerator_controller_unittest.cc", | 236 "accelerators/accelerator_controller_unittest.cc", |
| 239 "accelerators/accelerator_registrar_unittest.cc", | |
| 240 "app_launch_unittest.cc", | 237 "app_launch_unittest.cc", |
| 241 "bridge/wm_shell_mus_test_api.h", | 238 "bridge/wm_shell_mus_test_api.h", |
| 242 "bridge/wm_window_mus_test_api.h", | 239 "bridge/wm_window_mus_test_api.h", |
| 243 "layout_manager_unittest.cc", | 240 "layout_manager_unittest.cc", |
| 244 "root_window_controller_unittest.cc", | 241 "root_window_controller_unittest.cc", |
| 245 "test/ash_test_impl_mus.cc", | 242 "test/ash_test_impl_mus.cc", |
| 246 "test/ash_test_impl_mus.h", | 243 "test/ash_test_impl_mus.h", |
| 247 "test/wm_test_base.cc", | 244 "test/wm_test_base.cc", |
| 248 "test/wm_test_base.h", | 245 "test/wm_test_base.h", |
| 249 "test/wm_test_helper.cc", | 246 "test/wm_test_helper.cc", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 "//ui/views/mus", | 280 "//ui/views/mus", |
| 284 ] | 281 ] |
| 285 | 282 |
| 286 data_deps = [ | 283 data_deps = [ |
| 287 ":mus", | 284 ":mus", |
| 288 "//mash/quick_launch", | 285 "//mash/quick_launch", |
| 289 ] | 286 ] |
| 290 | 287 |
| 291 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 288 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 292 } | 289 } |
| OLD | NEW |