| 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 assert(is_chromeos) | 11 assert(is_chromeos) |
| 12 | 12 |
| 13 source_set("lib") { | 13 source_set("lib") { |
| 14 sources = [ | 14 sources = [ |
| 15 "accelerators/accelerator_controller_delegate_mus.cc", | 15 "accelerators/accelerator_controller_delegate_mus.cc", |
| 16 "accelerators/accelerator_controller_delegate_mus.h", | 16 "accelerators/accelerator_controller_delegate_mus.h", |
| 17 "accelerators/accelerator_controller_registrar.cc", | 17 "accelerators/accelerator_controller_registrar.cc", |
| 18 "accelerators/accelerator_controller_registrar.h", | 18 "accelerators/accelerator_controller_registrar.h", |
| 19 "accelerators/accelerator_handler.h", | 19 "accelerators/accelerator_handler.h", |
| 20 "accelerators/accelerator_ids.h", | 20 "accelerators/accelerator_ids.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", | 23 "bridge/immersive_handler_factory_mus.cc", |
| 24 "bridge/immersive_handler_factory_mus.h", | 24 "bridge/immersive_handler_factory_mus.h", |
| 25 "bridge/wm_shell_mus.cc", | 25 "bridge/shell_port_mash.cc", |
| 26 "bridge/wm_shell_mus.h", | 26 "bridge/shell_port_mash.h", |
| 27 "bridge/workspace_event_handler_mus.cc", | 27 "bridge/workspace_event_handler_mus.cc", |
| 28 "bridge/workspace_event_handler_mus.h", | 28 "bridge/workspace_event_handler_mus.h", |
| 29 "context_menu_mus.cc", | 29 "context_menu_mus.cc", |
| 30 "context_menu_mus.h", | 30 "context_menu_mus.h", |
| 31 "disconnected_app_handler.cc", | 31 "disconnected_app_handler.cc", |
| 32 "disconnected_app_handler.h", | 32 "disconnected_app_handler.h", |
| 33 "drag_window_resizer.cc", | 33 "drag_window_resizer.cc", |
| 34 "drag_window_resizer.h", | 34 "drag_window_resizer.h", |
| 35 "frame/detached_title_area_renderer.cc", | 35 "frame/detached_title_area_renderer.cc", |
| 36 "frame/detached_title_area_renderer.h", | 36 "frame/detached_title_area_renderer.h", |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 "//ui/resources", | 180 "//ui/resources", |
| 181 "//ui/views/resources", | 181 "//ui/views/resources", |
| 182 ] | 182 ] |
| 183 } | 183 } |
| 184 | 184 |
| 185 source_set("unittests") { | 185 source_set("unittests") { |
| 186 testonly = true | 186 testonly = true |
| 187 | 187 |
| 188 sources = [ | 188 sources = [ |
| 189 "app_launch_unittest.cc", | 189 "app_launch_unittest.cc", |
| 190 "bridge/wm_shell_mus_test_api.h", | 190 "bridge/shell_port_mash_test_api.h", |
| 191 "non_client_frame_controller_unittest.cc", | 191 "non_client_frame_controller_unittest.cc", |
| 192 "screen_mus_unittest.cc", | 192 "screen_mus_unittest.cc", |
| 193 "test/ash_test_impl_mus.cc", | 193 "test/ash_test_impl_mus.cc", |
| 194 "test/ash_test_impl_mus.h", | 194 "test/ash_test_impl_mus.h", |
| 195 "test/wm_test_base.cc", | 195 "test/wm_test_base.cc", |
| 196 "test/wm_test_base.h", | 196 "test/wm_test_base.h", |
| 197 "test/wm_test_helper.cc", | 197 "test/wm_test_helper.cc", |
| 198 "test/wm_test_helper.h", | 198 "test/wm_test_helper.h", |
| 199 "top_level_window_factory_unittest.cc", | 199 "top_level_window_factory_unittest.cc", |
| 200 "window_manager_unittest.cc", | 200 "window_manager_unittest.cc", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 "//ui/views/mus", | 233 "//ui/views/mus", |
| 234 ] | 234 ] |
| 235 | 235 |
| 236 data_deps = [ | 236 data_deps = [ |
| 237 ":mus", | 237 ":mus", |
| 238 "//mash/quick_launch", | 238 "//mash/quick_launch", |
| 239 ] | 239 ] |
| 240 | 240 |
| 241 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 241 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 242 } | 242 } |
| OLD | NEW |