| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.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 | 9 |
| 10 static_library("lib") { | 10 static_library("lib") { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "event_dispatcher.h", | 32 "event_dispatcher.h", |
| 33 "event_dispatcher_delegate.h", | 33 "event_dispatcher_delegate.h", |
| 34 "event_matcher.cc", | 34 "event_matcher.cc", |
| 35 "event_matcher.h", | 35 "event_matcher.h", |
| 36 "focus_controller.cc", | 36 "focus_controller.cc", |
| 37 "focus_controller.h", | 37 "focus_controller.h", |
| 38 "focus_controller_delegate.h", | 38 "focus_controller_delegate.h", |
| 39 "focus_controller_observer.h", | 39 "focus_controller_observer.h", |
| 40 "frame_generator.cc", | 40 "frame_generator.cc", |
| 41 "frame_generator.h", | 41 "frame_generator.h", |
| 42 "gpu_service_proxy.cc", | 42 "gpu_host.cc", |
| 43 "gpu_service_proxy.h", | 43 "gpu_host.h", |
| 44 "gpu_service_proxy_delegate.h", | 44 "gpu_host_delegate.h", |
| 45 "modal_window_controller.cc", | 45 "modal_window_controller.cc", |
| 46 "modal_window_controller.h", | 46 "modal_window_controller.h", |
| 47 "operation.cc", | 47 "operation.cc", |
| 48 "operation.h", | 48 "operation.h", |
| 49 "platform_display.cc", | 49 "platform_display.cc", |
| 50 "platform_display.h", | 50 "platform_display.h", |
| 51 "platform_display_default.cc", | 51 "platform_display_default.cc", |
| 52 "platform_display_default.h", | 52 "platform_display_default.h", |
| 53 "platform_display_delegate.h", | 53 "platform_display_delegate.h", |
| 54 "platform_display_factory.h", | 54 "platform_display_factory.h", |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 | 266 |
| 267 data_deps = [ | 267 data_deps = [ |
| 268 ":mus_ws_unittests_app_manifest", | 268 ":mus_ws_unittests_app_manifest", |
| 269 ] | 269 ] |
| 270 } | 270 } |
| 271 | 271 |
| 272 service_manifest("mus_ws_unittests_app_manifest") { | 272 service_manifest("mus_ws_unittests_app_manifest") { |
| 273 name = "mus_ws_unittests_app" | 273 name = "mus_ws_unittests_app" |
| 274 source = "mus_ws_unittests_app_manifest.json" | 274 source = "mus_ws_unittests_app_manifest.json" |
| 275 } | 275 } |
| OLD | NEW |