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/catalog/public/tools/catalog.gni") | 7 import("//services/catalog/public/tools/catalog.gni") |
8 import("//services/service_manager/public/cpp/service.gni") | 8 import("//services/service_manager/public/cpp/service.gni") |
9 import("//services/service_manager/public/service_manifest.gni") | 9 import("//services/service_manager/public/service_manifest.gni") |
10 import("//services/service_manager/public/tools/test/service_test.gni") | 10 import("//services/service_manager/public/tools/test/service_test.gni") |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 "window_tree.h", | 114 "window_tree.h", |
115 "window_tree_binding.cc", | 115 "window_tree_binding.cc", |
116 "window_tree_binding.h", | 116 "window_tree_binding.h", |
117 "window_tree_factory.cc", | 117 "window_tree_factory.cc", |
118 "window_tree_factory.h", | 118 "window_tree_factory.h", |
119 "window_tree_host_factory.cc", | 119 "window_tree_host_factory.cc", |
120 "window_tree_host_factory.h", | 120 "window_tree_host_factory.h", |
121 ] | 121 ] |
122 | 122 |
123 deps = [ | 123 deps = [ |
124 "//components/viz/common", | 124 "//components/viz/host", |
125 "//gpu/command_buffer/client", | 125 "//gpu/command_buffer/client", |
126 "//gpu/command_buffer/client:gles2_interface", | 126 "//gpu/command_buffer/client:gles2_interface", |
127 "//gpu/ipc/client", | 127 "//gpu/ipc/client", |
128 "//gpu/ipc/common", | 128 "//gpu/ipc/common", |
129 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split. | 129 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split. |
130 "//services/ui/gpu/interfaces", | 130 "//services/ui/gpu/interfaces", |
131 ] | 131 ] |
132 | 132 |
133 public_deps = [ | 133 public_deps = [ |
134 "//base", | 134 "//base", |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 | 300 |
301 service_manifest("unittests_manifest") { | 301 service_manifest("unittests_manifest") { |
302 name = "ui_service_unittests" | 302 name = "ui_service_unittests" |
303 source = "test_manifest.json" | 303 source = "test_manifest.json" |
304 } | 304 } |
305 | 305 |
306 catalog("tests_catalog") { | 306 catalog("tests_catalog") { |
307 testonly = true | 307 testonly = true |
308 embedded_services = [ ":unittests_manifest" ] | 308 embedded_services = [ ":unittests_manifest" ] |
309 } | 309 } |
OLD | NEW |