| 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 "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 "display_list.cc", | |
| 21 "display_list.h", | |
| 22 "input_method_mus.cc", | 20 "input_method_mus.cc", |
| 23 "input_method_mus.h", | 21 "input_method_mus.h", |
| 24 "mus_export.h", | 22 "mus_export.h", |
| 25 "native_widget_mus.cc", | 23 "native_widget_mus.cc", |
| 26 "native_widget_mus.h", | 24 "native_widget_mus.h", |
| 27 "os_exchange_data_provider_mus.cc", | 25 "os_exchange_data_provider_mus.cc", |
| 28 "os_exchange_data_provider_mus.h", | 26 "os_exchange_data_provider_mus.h", |
| 29 "pointer_watcher_event_router.cc", | 27 "pointer_watcher_event_router.cc", |
| 30 "pointer_watcher_event_router.h", | 28 "pointer_watcher_event_router.h", |
| 31 "screen_mus.cc", | 29 "screen_mus.cc", |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 | 141 |
| 144 data_deps = [ | 142 data_deps = [ |
| 145 "//ui/resources:ui_test_pak_data", | 143 "//ui/resources:ui_test_pak_data", |
| 146 ] | 144 ] |
| 147 } | 145 } |
| 148 | 146 |
| 149 test("views_mus_unittests") { | 147 test("views_mus_unittests") { |
| 150 testonly = true | 148 testonly = true |
| 151 | 149 |
| 152 sources = [ | 150 sources = [ |
| 153 "display_list_unittest.cc", | |
| 154 "input_method_mus_unittest.cc", | 151 "input_method_mus_unittest.cc", |
| 155 "native_widget_mus_unittest.cc", | 152 "native_widget_mus_unittest.cc", |
| 156 "os_exchange_data_provider_mus_unittest.cc", | 153 "os_exchange_data_provider_mus_unittest.cc", |
| 157 "pointer_watcher_event_router_unittest.cc", | 154 "pointer_watcher_event_router_unittest.cc", |
| 158 "run_all_unittests_mus.cc", | 155 "run_all_unittests_mus.cc", |
| 159 "screen_mus_unittest.cc", | 156 "screen_mus_unittest.cc", |
| 160 ] | 157 ] |
| 161 | 158 |
| 162 configs += [ "//build/config:precompiled_headers" ] | 159 configs += [ "//build/config:precompiled_headers" ] |
| 163 | 160 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 type = "exe" | 281 type = "exe" |
| 285 name = "views_mus_unittests" | 282 name = "views_mus_unittests" |
| 286 source = "unittests_manifest.json" | 283 source = "unittests_manifest.json" |
| 287 } | 284 } |
| 288 | 285 |
| 289 service_manifest("interactive_ui_tests_manifest") { | 286 service_manifest("interactive_ui_tests_manifest") { |
| 290 type = "exe" | 287 type = "exe" |
| 291 name = "views_mus_interactive_ui_tests" | 288 name = "views_mus_interactive_ui_tests" |
| 292 source = "interactive_ui_tests_manifest.json" | 289 source = "interactive_ui_tests_manifest.json" |
| 293 } | 290 } |
| OLD | NEW |