| 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 25 matching lines...) Expand all Loading... |
| 36 "drag_window_resizer.h", | 36 "drag_window_resizer.h", |
| 37 "frame/custom_frame_view_mus.cc", | 37 "frame/custom_frame_view_mus.cc", |
| 38 "frame/custom_frame_view_mus.h", | 38 "frame/custom_frame_view_mus.h", |
| 39 "frame/detached_title_area_renderer.cc", | 39 "frame/detached_title_area_renderer.cc", |
| 40 "frame/detached_title_area_renderer.h", | 40 "frame/detached_title_area_renderer.h", |
| 41 "frame/detached_title_area_renderer_host.h", | 41 "frame/detached_title_area_renderer_host.h", |
| 42 "keyboard_ui_mus.cc", | 42 "keyboard_ui_mus.cc", |
| 43 "keyboard_ui_mus.h", | 43 "keyboard_ui_mus.h", |
| 44 "move_event_handler.cc", | 44 "move_event_handler.cc", |
| 45 "move_event_handler.h", | 45 "move_event_handler.h", |
| 46 "mus_property_mirror_ash.cc", |
| 47 "mus_property_mirror_ash.h", |
| 46 "network_connect_delegate_mus.cc", | 48 "network_connect_delegate_mus.cc", |
| 47 "network_connect_delegate_mus.h", | 49 "network_connect_delegate_mus.h", |
| 48 "non_client_frame_controller.cc", | 50 "non_client_frame_controller.cc", |
| 49 "non_client_frame_controller.h", | 51 "non_client_frame_controller.h", |
| 50 "property_util.cc", | 52 "property_util.cc", |
| 51 "property_util.h", | 53 "property_util.h", |
| 52 "screen_mus.cc", | 54 "screen_mus.cc", |
| 53 "screen_mus.h", | 55 "screen_mus.h", |
| 54 "shadow.cc", | 56 "shadow.cc", |
| 55 "shadow.h", | 57 "shadow.h", |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 | 196 |
| 195 source_set("unittests") { | 197 source_set("unittests") { |
| 196 testonly = true | 198 testonly = true |
| 197 | 199 |
| 198 sources = [ | 200 sources = [ |
| 199 "accelerators/accelerator_controller_registrar_test_api.cc", | 201 "accelerators/accelerator_controller_registrar_test_api.cc", |
| 200 "accelerators/accelerator_controller_registrar_test_api.h", | 202 "accelerators/accelerator_controller_registrar_test_api.h", |
| 201 "accelerators/accelerator_controller_unittest.cc", | 203 "accelerators/accelerator_controller_unittest.cc", |
| 202 "app_launch_unittest.cc", | 204 "app_launch_unittest.cc", |
| 203 "bridge/wm_shell_mus_test_api.h", | 205 "bridge/wm_shell_mus_test_api.h", |
| 206 "mus_property_mirror_ash_unittest.cc", |
| 204 "test/ash_test_impl_mus.cc", | 207 "test/ash_test_impl_mus.cc", |
| 205 "test/ash_test_impl_mus.h", | 208 "test/ash_test_impl_mus.h", |
| 206 "test/wm_test_base.cc", | 209 "test/wm_test_base.cc", |
| 207 "test/wm_test_base.h", | 210 "test/wm_test_base.h", |
| 208 "test/wm_test_helper.cc", | 211 "test/wm_test_helper.cc", |
| 209 "test/wm_test_helper.h", | 212 "test/wm_test_helper.h", |
| 210 "top_level_window_factory_unittest.cc", | 213 "top_level_window_factory_unittest.cc", |
| 211 "window_manager_unittest.cc", | 214 "window_manager_unittest.cc", |
| 212 ] | 215 ] |
| 213 | 216 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 244 "//ui/views/mus", | 247 "//ui/views/mus", |
| 245 ] | 248 ] |
| 246 | 249 |
| 247 data_deps = [ | 250 data_deps = [ |
| 248 ":mus", | 251 ":mus", |
| 249 "//mash/quick_launch", | 252 "//mash/quick_launch", |
| 250 ] | 253 ] |
| 251 | 254 |
| 252 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 255 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 253 } | 256 } |
| OLD | NEW |