| 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 "drag_drop_client_mus.cc", |
| 21 "drag_drop_client_mus.h", |
| 22 "drop_target_mus.cc", |
| 23 "drop_target_mus.h", |
| 20 "input_method_mus.cc", | 24 "input_method_mus.cc", |
| 21 "input_method_mus.h", | 25 "input_method_mus.h", |
| 22 "mus_export.h", | 26 "mus_export.h", |
| 23 "native_widget_mus.cc", | 27 "native_widget_mus.cc", |
| 24 "native_widget_mus.h", | 28 "native_widget_mus.h", |
| 25 "os_exchange_data_provider_mus.cc", | 29 "os_exchange_data_provider_mus.cc", |
| 26 "os_exchange_data_provider_mus.h", | 30 "os_exchange_data_provider_mus.h", |
| 27 "pointer_watcher_event_router.cc", | 31 "pointer_watcher_event_router.cc", |
| 28 "pointer_watcher_event_router.h", | 32 "pointer_watcher_event_router.h", |
| 29 "screen_mus.cc", | 33 "screen_mus.cc", |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 type = "exe" | 285 type = "exe" |
| 282 name = "views_mus_unittests" | 286 name = "views_mus_unittests" |
| 283 source = "unittests_manifest.json" | 287 source = "unittests_manifest.json" |
| 284 } | 288 } |
| 285 | 289 |
| 286 service_manifest("interactive_ui_tests_manifest") { | 290 service_manifest("interactive_ui_tests_manifest") { |
| 287 type = "exe" | 291 type = "exe" |
| 288 name = "views_mus_interactive_ui_tests" | 292 name = "views_mus_interactive_ui_tests" |
| 289 source = "interactive_ui_tests_manifest.json" | 293 source = "interactive_ui_tests_manifest.json" |
| 290 } | 294 } |
| OLD | NEW |