| 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 "desktop_window_tree_host_mus.cc", | 20 "desktop_window_tree_host_mus.cc", |
| 21 "desktop_window_tree_host_mus.h", | 21 "desktop_window_tree_host_mus.h", |
| 22 "drag_drop_client_mus.cc", | 22 "drag_drop_client_mus.cc", |
| 23 "drag_drop_client_mus.h", | 23 "drag_drop_client_mus.h", |
| 24 "drop_target_mus.cc", | 24 "drop_target_mus.cc", |
| 25 "drop_target_mus.h", | 25 "drop_target_mus.h", |
| 26 "input_method_mus.cc", | 26 "input_method_mus.cc", |
| 27 "input_method_mus.h", | 27 "input_method_mus.h", |
| 28 "mus_client.cc", | 28 "mus_client.cc", |
| 29 "mus_client.h", | 29 "mus_client.h", |
| 30 "mus_client_observer.h", |
| 30 "mus_export.h", | 31 "mus_export.h", |
| 31 "native_widget_mus.cc", | 32 "native_widget_mus.cc", |
| 32 "native_widget_mus.h", | 33 "native_widget_mus.h", |
| 33 "pointer_watcher_event_router.cc", | 34 "pointer_watcher_event_router.cc", |
| 34 "pointer_watcher_event_router.h", | 35 "pointer_watcher_event_router.h", |
| 35 "pointer_watcher_event_router2.cc", | 36 "pointer_watcher_event_router2.cc", |
| 36 "pointer_watcher_event_router2.h", | 37 "pointer_watcher_event_router2.h", |
| 37 "screen_mus.cc", | 38 "screen_mus.cc", |
| 38 "screen_mus.h", | 39 "screen_mus.h", |
| 39 "screen_mus_delegate.h", | 40 "screen_mus_delegate.h", |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 | 406 |
| 406 service_manifest("unittests_aura_manifest") { | 407 service_manifest("unittests_aura_manifest") { |
| 407 name = "views_aura_mus_unittests" | 408 name = "views_aura_mus_unittests" |
| 408 source = "unittests_aura_manifest.json" | 409 source = "unittests_aura_manifest.json" |
| 409 } | 410 } |
| 410 | 411 |
| 411 service_manifest("interactive_ui_tests_manifest") { | 412 service_manifest("interactive_ui_tests_manifest") { |
| 412 name = "views_mus_interactive_ui_tests" | 413 name = "views_mus_interactive_ui_tests" |
| 413 source = "interactive_ui_tests_manifest.json" | 414 source = "interactive_ui_tests_manifest.json" |
| 414 } | 415 } |
| OLD | NEW |