| 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_presenter_impl.cc", |
| 23 "//ui/app_list/presenter/app_list_presenter_impl.h", |
| 24 "//ui/app_list/presenter/app_list_view_delegate_factory.cc", |
| 25 "//ui/app_list/presenter/app_list_view_delegate_factory.h", |
| 26 "//ui/app_list/test/app_list_test_view_delegate.cc", |
| 27 "//ui/app_list/test/app_list_test_view_delegate.h", |
| 16 "aura_init.cc", | 28 "aura_init.cc", |
| 17 "aura_init.h", | 29 "aura_init.h", |
| 18 "clipboard_mus.cc", | 30 "clipboard_mus.cc", |
| 19 "clipboard_mus.h", | 31 "clipboard_mus.h", |
| 20 "input_method_mus.cc", | 32 "input_method_mus.cc", |
| 21 "input_method_mus.h", | 33 "input_method_mus.h", |
| 22 "mus_export.h", | 34 "mus_export.h", |
| 23 "native_widget_mus.cc", | 35 "native_widget_mus.cc", |
| 24 "native_widget_mus.h", | 36 "native_widget_mus.h", |
| 25 "os_exchange_data_provider_mus.cc", | 37 "os_exchange_data_provider_mus.cc", |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 test("views_mus_unittests") { | 159 test("views_mus_unittests") { |
| 148 testonly = true | 160 testonly = true |
| 149 | 161 |
| 150 sources = [ | 162 sources = [ |
| 151 "input_method_mus_unittest.cc", | 163 "input_method_mus_unittest.cc", |
| 152 "native_widget_mus_unittest.cc", | 164 "native_widget_mus_unittest.cc", |
| 153 "os_exchange_data_provider_mus_unittest.cc", | 165 "os_exchange_data_provider_mus_unittest.cc", |
| 154 "pointer_watcher_event_router_unittest.cc", | 166 "pointer_watcher_event_router_unittest.cc", |
| 155 "run_all_unittests_mus.cc", | 167 "run_all_unittests_mus.cc", |
| 156 "screen_mus_unittest.cc", | 168 "screen_mus_unittest.cc", |
| 169 "test_window_manager_connection.cc", |
| 157 ] | 170 ] |
| 158 | 171 |
| 159 configs += [ "//build/config:precompiled_headers" ] | 172 configs += [ "//build/config:precompiled_headers" ] |
| 160 | 173 |
| 161 deps = [ | 174 deps = [ |
| 162 ":mus", | 175 ":mus", |
| 163 ":test_support", | 176 ":test_support", |
| 164 "//base", | 177 "//base", |
| 165 "//base:i18n", | 178 "//base:i18n", |
| 166 "//base/test:test_support", | 179 "//base/test:test_support", |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 type = "exe" | 294 type = "exe" |
| 282 name = "views_mus_unittests" | 295 name = "views_mus_unittests" |
| 283 source = "unittests_manifest.json" | 296 source = "unittests_manifest.json" |
| 284 } | 297 } |
| 285 | 298 |
| 286 service_manifest("interactive_ui_tests_manifest") { | 299 service_manifest("interactive_ui_tests_manifest") { |
| 287 type = "exe" | 300 type = "exe" |
| 288 name = "views_mus_interactive_ui_tests" | 301 name = "views_mus_interactive_ui_tests" |
| 289 source = "interactive_ui_tests_manifest.json" | 302 source = "interactive_ui_tests_manifest.json" |
| 290 } | 303 } |
| OLD | NEW |