| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 "window_tree_factory.cc", | 100 "window_tree_factory.cc", |
| 101 "window_tree_factory.h", | 101 "window_tree_factory.h", |
| 102 "window_tree_host_factory.cc", | 102 "window_tree_host_factory.cc", |
| 103 "window_tree_host_factory.h", | 103 "window_tree_host_factory.h", |
| 104 ] | 104 ] |
| 105 | 105 |
| 106 deps = [ | 106 deps = [ |
| 107 # TODO(sad): Temporary, until the GPU process is split out of ws. | 107 # TODO(sad): Temporary, until the GPU process is split out of ws. |
| 108 "//services/ui/gpu", | 108 "//services/ui/gpu", |
| 109 "//services/ui/gpu/display_compositor", | 109 "//services/ui/gpu/display_compositor", |
| 110 "//services/ui/gpu/interfaces", |
| 110 ] | 111 ] |
| 111 | 112 |
| 112 public_deps = [ | 113 public_deps = [ |
| 113 "//base", | 114 "//base", |
| 114 "//cc", | 115 "//cc", |
| 115 "//cc/ipc:interfaces", | 116 "//cc/ipc:interfaces", |
| 116 "//cc/surfaces", | 117 "//cc/surfaces", |
| 117 "//cc/surfaces:surface_id", | 118 "//cc/surfaces:surface_id", |
| 118 "//mojo/common:common_base", | 119 "//mojo/common:common_base", |
| 119 "//mojo/public/cpp/bindings", | 120 "//mojo/public/cpp/bindings", |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 | 250 |
| 250 data_deps = [ | 251 data_deps = [ |
| 251 ":mus_ws_unittests_app_manifest", | 252 ":mus_ws_unittests_app_manifest", |
| 252 ] | 253 ] |
| 253 } | 254 } |
| 254 | 255 |
| 255 service_manifest("mus_ws_unittests_app_manifest") { | 256 service_manifest("mus_ws_unittests_app_manifest") { |
| 256 name = "mus_ws_unittests_app" | 257 name = "mus_ws_unittests_app" |
| 257 source = "mus_ws_unittests_app_manifest.json" | 258 source = "mus_ws_unittests_app_manifest.json" |
| 258 } | 259 } |
| OLD | NEW |