| 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 "mus_client.cc", | 22 "mus_client.cc", |
| 23 "mus_client.h", | 23 "mus_client.h", |
| 24 "mus_client_observer.h", | 24 "mus_client_observer.h", |
| 25 "mus_client_test_observer.h", |
| 25 "mus_export.h", | 26 "mus_export.h", |
| 26 "pointer_watcher_event_router.cc", | 27 "pointer_watcher_event_router.cc", |
| 27 "pointer_watcher_event_router.h", | 28 "pointer_watcher_event_router.h", |
| 28 "screen_mus.cc", | 29 "screen_mus.cc", |
| 29 "screen_mus.h", | 30 "screen_mus.h", |
| 30 "screen_mus_delegate.h", | 31 "screen_mus_delegate.h", |
| 31 "window_manager_constants_converters.cc", | 32 "window_manager_constants_converters.cc", |
| 32 "window_manager_constants_converters.h", | 33 "window_manager_constants_converters.h", |
| 33 "window_manager_frame_values.cc", | 34 "window_manager_frame_values.cc", |
| 34 "window_manager_frame_values.h", | 35 "window_manager_frame_values.h", |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 | 271 |
| 271 service_manifest("unittests_manifest") { | 272 service_manifest("unittests_manifest") { |
| 272 name = "views_mus_unittests" | 273 name = "views_mus_unittests" |
| 273 source = "unittests_manifest.json" | 274 source = "unittests_manifest.json" |
| 274 } | 275 } |
| 275 | 276 |
| 276 service_manifest("interactive_ui_tests_manifest") { | 277 service_manifest("interactive_ui_tests_manifest") { |
| 277 name = "views_mus_interactive_ui_tests" | 278 name = "views_mus_interactive_ui_tests" |
| 278 source = "interactive_ui_tests_manifest.json" | 279 source = "interactive_ui_tests_manifest.json" |
| 279 } | 280 } |
| OLD | NEW |