| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.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("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| 11 | 11 |
| 12 component("mus") { | 12 component("mus") { |
| 13 output_name = "ui_views_mus_lib" | 13 output_name = "ui_views_mus_lib" |
| 14 | 14 |
| 15 sources = [ | 15 sources = [ |
| 16 "aura_init.cc", | 16 "aura_init.cc", |
| 17 "aura_init.h", | 17 "aura_init.h", |
| 18 "clipboard_mus.cc", | 18 "clipboard_mus.cc", |
| 19 "clipboard_mus.h", | 19 "clipboard_mus.h", |
| 20 "drag_drop_client_mus.cc", | 20 "drag_drop_client_mus.cc", |
| 21 "drag_drop_client_mus.h", | 21 "drag_drop_client_mus.h", |
| 22 "drop_target_mus.cc", | 22 "drop_target_mus.cc", |
| 23 "drop_target_mus.h", | 23 "drop_target_mus.h", |
| 24 "input_method_mus.cc", | 24 "input_method_mus.cc", |
| 25 "input_method_mus.h", | 25 "input_method_mus.h", |
| 26 "mus_export.h", | 26 "mus_export.h", |
| 27 "native_widget_mus.cc", | 27 "native_widget_mus.cc", |
| 28 "native_widget_mus.h", | 28 "native_widget_mus.h", |
| 29 "os_exchange_data_provider_mus.cc", | |
| 30 "os_exchange_data_provider_mus.h", | |
| 31 "pointer_watcher_event_router.cc", | 29 "pointer_watcher_event_router.cc", |
| 32 "pointer_watcher_event_router.h", | 30 "pointer_watcher_event_router.h", |
| 33 "screen_mus.cc", | 31 "screen_mus.cc", |
| 34 "screen_mus.h", | 32 "screen_mus.h", |
| 35 "screen_mus_delegate.h", | 33 "screen_mus_delegate.h", |
| 36 "surface_context_factory.cc", | 34 "surface_context_factory.cc", |
| 37 "surface_context_factory.h", | 35 "surface_context_factory.h", |
| 38 "text_input_client_impl.cc", | 36 "text_input_client_impl.cc", |
| 39 "text_input_client_impl.h", | 37 "text_input_client_impl.h", |
| 40 "window_manager_connection.cc", | 38 "window_manager_connection.cc", |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 "//ui/resources:ui_test_pak_data", | 145 "//ui/resources:ui_test_pak_data", |
| 148 ] | 146 ] |
| 149 } | 147 } |
| 150 | 148 |
| 151 test("views_mus_unittests") { | 149 test("views_mus_unittests") { |
| 152 testonly = true | 150 testonly = true |
| 153 | 151 |
| 154 sources = [ | 152 sources = [ |
| 155 "input_method_mus_unittest.cc", | 153 "input_method_mus_unittest.cc", |
| 156 "native_widget_mus_unittest.cc", | 154 "native_widget_mus_unittest.cc", |
| 157 "os_exchange_data_provider_mus_unittest.cc", | |
| 158 "pointer_watcher_event_router_unittest.cc", | 155 "pointer_watcher_event_router_unittest.cc", |
| 159 "run_all_unittests_mus.cc", | 156 "run_all_unittests_mus.cc", |
| 160 "screen_mus_unittest.cc", | 157 "screen_mus_unittest.cc", |
| 161 "window_manager_connection_unittest.cc", | 158 "window_manager_connection_unittest.cc", |
| 162 ] | 159 ] |
| 163 | 160 |
| 164 configs += [ "//build/config:precompiled_headers" ] | 161 configs += [ "//build/config:precompiled_headers" ] |
| 165 | 162 |
| 166 deps = [ | 163 deps = [ |
| 167 ":mus", | 164 ":mus", |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 type = "exe" | 284 type = "exe" |
| 288 name = "views_mus_unittests" | 285 name = "views_mus_unittests" |
| 289 source = "unittests_manifest.json" | 286 source = "unittests_manifest.json" |
| 290 } | 287 } |
| 291 | 288 |
| 292 service_manifest("interactive_ui_tests_manifest") { | 289 service_manifest("interactive_ui_tests_manifest") { |
| 293 type = "exe" | 290 type = "exe" |
| 294 name = "views_mus_interactive_ui_tests" | 291 name = "views_mus_interactive_ui_tests" |
| 295 source = "interactive_ui_tests_manifest.json" | 292 source = "interactive_ui_tests_manifest.json" |
| 296 } | 293 } |
| OLD | NEW |