| 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/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 | 9 |
| 10 static_library("lib") { | 10 static_library("lib") { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 "event_dispatcher.h", | 31 "event_dispatcher.h", |
| 32 "event_dispatcher_delegate.h", | 32 "event_dispatcher_delegate.h", |
| 33 "event_matcher.cc", | 33 "event_matcher.cc", |
| 34 "event_matcher.h", | 34 "event_matcher.h", |
| 35 "focus_controller.cc", | 35 "focus_controller.cc", |
| 36 "focus_controller.h", | 36 "focus_controller.h", |
| 37 "focus_controller_delegate.h", | 37 "focus_controller_delegate.h", |
| 38 "focus_controller_observer.h", | 38 "focus_controller_observer.h", |
| 39 "frame_generator.cc", | 39 "frame_generator.cc", |
| 40 "frame_generator.h", | 40 "frame_generator.h", |
| 41 "gpu_service_proxy.cc", |
| 42 "gpu_service_proxy.h", |
| 41 "modal_window_controller.cc", | 43 "modal_window_controller.cc", |
| 42 "modal_window_controller.h", | 44 "modal_window_controller.h", |
| 43 "operation.cc", | 45 "operation.cc", |
| 44 "operation.h", | 46 "operation.h", |
| 45 "platform_display.cc", | 47 "platform_display.cc", |
| 46 "platform_display.h", | 48 "platform_display.h", |
| 47 "platform_display_delegate.h", | 49 "platform_display_delegate.h", |
| 48 "platform_display_factory.h", | 50 "platform_display_factory.h", |
| 49 "platform_display_init_params.cc", | 51 "platform_display_init_params.cc", |
| 50 "platform_display_init_params.h", | 52 "platform_display_init_params.h", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "window_tree.cc", | 96 "window_tree.cc", |
| 95 "window_tree.h", | 97 "window_tree.h", |
| 96 "window_tree_binding.cc", | 98 "window_tree_binding.cc", |
| 97 "window_tree_binding.h", | 99 "window_tree_binding.h", |
| 98 "window_tree_factory.cc", | 100 "window_tree_factory.cc", |
| 99 "window_tree_factory.h", | 101 "window_tree_factory.h", |
| 100 "window_tree_host_factory.cc", | 102 "window_tree_host_factory.cc", |
| 101 "window_tree_host_factory.h", | 103 "window_tree_host_factory.h", |
| 102 ] | 104 ] |
| 103 | 105 |
| 106 deps = [ |
| 107 # TODO(sad): Temporary, until the GPU process is split out of ws. |
| 108 "//services/ui/gpu", |
| 109 "//services/ui/gpu/display_compositor", |
| 110 ] |
| 111 |
| 104 public_deps = [ | 112 public_deps = [ |
| 105 "//base", | 113 "//base", |
| 106 "//cc", | 114 "//cc", |
| 107 "//cc/ipc:interfaces", | 115 "//cc/ipc:interfaces", |
| 108 "//cc/surfaces", | 116 "//cc/surfaces", |
| 109 "//cc/surfaces:surface_id", | 117 "//cc/surfaces:surface_id", |
| 110 "//mojo/common:common_base", | 118 "//mojo/common:common_base", |
| 111 "//mojo/public/cpp/bindings", | 119 "//mojo/public/cpp/bindings", |
| 112 "//services/shell/public/cpp", | 120 "//services/shell/public/cpp", |
| 113 "//services/shell/public/interfaces", | 121 "//services/shell/public/interfaces", |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 | 249 |
| 242 data_deps = [ | 250 data_deps = [ |
| 243 ":mus_ws_unittests_app_manifest", | 251 ":mus_ws_unittests_app_manifest", |
| 244 ] | 252 ] |
| 245 } | 253 } |
| 246 | 254 |
| 247 service_manifest("mus_ws_unittests_app_manifest") { | 255 service_manifest("mus_ws_unittests_app_manifest") { |
| 248 name = "mus_ws_unittests_app" | 256 name = "mus_ws_unittests_app" |
| 249 source = "mus_ws_unittests_app_manifest.json" | 257 source = "mus_ws_unittests_app_manifest.json" |
| 250 } | 258 } |
| OLD | NEW |