| 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/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("//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 "//chrome/browser/profiles/profile.cc", |
| 17 "//chrome/browser/profiles/profile.h", |
| 18 "//chrome/browser/ui/ash/app_list/app_list_presenter_delegate_mus.cc", |
| 19 "//chrome/browser/ui/ash/app_list/app_list_presenter_delegate_mus.h", |
| 20 "//services/ui/public/cpp/tests/window_tree_client_private.cc", |
| 21 "//services/ui/public/cpp/tests/window_tree_client_private.h", |
| 22 "//ui/app_list/presenter/app_list_view_delegate_factory.cc", |
| 23 "//ui/app_list/presenter/app_list_view_delegate_factory.h", |
| 24 "//ui/app_list/test/app_list_test_view_delegate.cc", |
| 25 "//ui/app_list/test/app_list_test_view_delegate.h", |
| 16 "aura_init.cc", | 26 "aura_init.cc", |
| 17 "aura_init.h", | 27 "aura_init.h", |
| 18 "clipboard_mus.cc", | 28 "clipboard_mus.cc", |
| 19 "clipboard_mus.h", | 29 "clipboard_mus.h", |
| 20 "input_method_mus.cc", | 30 "input_method_mus.cc", |
| 21 "input_method_mus.h", | 31 "input_method_mus.h", |
| 22 "mus_export.h", | 32 "mus_export.h", |
| 23 "native_widget_mus.cc", | 33 "native_widget_mus.cc", |
| 24 "native_widget_mus.h", | 34 "native_widget_mus.h", |
| 25 "os_exchange_data_provider_mus.cc", | 35 "os_exchange_data_provider_mus.cc", |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 | 151 |
| 142 data_deps = [ | 152 data_deps = [ |
| 143 "//ui/resources:ui_test_pak_data", | 153 "//ui/resources:ui_test_pak_data", |
| 144 ] | 154 ] |
| 145 } | 155 } |
| 146 | 156 |
| 147 test("views_mus_unittests") { | 157 test("views_mus_unittests") { |
| 148 testonly = true | 158 testonly = true |
| 149 | 159 |
| 150 sources = [ | 160 sources = [ |
| 161 "//chrome/browser/ui/ash/app_list/app_list_presenter_delegate_mus_unittest.c
c", |
| 151 "input_method_mus_unittest.cc", | 162 "input_method_mus_unittest.cc", |
| 152 "native_widget_mus_unittest.cc", | 163 "native_widget_mus_unittest.cc", |
| 153 "os_exchange_data_provider_mus_unittest.cc", | 164 "os_exchange_data_provider_mus_unittest.cc", |
| 154 "pointer_watcher_event_router_unittest.cc", | 165 "pointer_watcher_event_router_unittest.cc", |
| 155 "run_all_unittests_mus.cc", | 166 "run_all_unittests_mus.cc", |
| 156 "screen_mus_unittest.cc", | 167 "screen_mus_unittest.cc", |
| 157 ] | 168 ] |
| 158 | 169 |
| 159 configs += [ "//build/config:precompiled_headers" ] | 170 configs += [ "//build/config:precompiled_headers" ] |
| 160 | 171 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 type = "exe" | 292 type = "exe" |
| 282 name = "views_mus_unittests" | 293 name = "views_mus_unittests" |
| 283 source = "unittests_manifest.json" | 294 source = "unittests_manifest.json" |
| 284 } | 295 } |
| 285 | 296 |
| 286 service_manifest("interactive_ui_tests_manifest") { | 297 service_manifest("interactive_ui_tests_manifest") { |
| 287 type = "exe" | 298 type = "exe" |
| 288 name = "views_mus_interactive_ui_tests" | 299 name = "views_mus_interactive_ui_tests" |
| 289 source = "interactive_ui_tests_manifest.json" | 300 source = "interactive_ui_tests_manifest.json" |
| 290 } | 301 } |
| OLD | NEW |