| 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 "//gpu/command_buffer/client", | 125 "//gpu/command_buffer/client", |
| 125 "//gpu/command_buffer/client:gles2_interface", | 126 "//gpu/command_buffer/client:gles2_interface", |
| 126 "//gpu/ipc/client", | 127 "//gpu/ipc/client", |
| 127 "//gpu/ipc/common", | 128 "//gpu/ipc/common", |
| 128 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split. | 129 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split. |
| 129 "//services/ui/gpu/interfaces", | 130 "//services/ui/gpu/interfaces", |
| 130 ] | 131 ] |
| 131 | 132 |
| 132 public_deps = [ | 133 public_deps = [ |
| 133 "//base", | 134 "//base", |
| 134 "//cc", | 135 "//cc", |
| 135 "//cc/ipc:interfaces", | 136 "//cc/ipc:interfaces", |
| 136 "//cc/surfaces", | 137 "//cc/surfaces", |
| 137 "//cc/surfaces:surface_id", | 138 "//cc/surfaces:surface_id", |
| 138 "//mojo/common:common_base", | 139 "//mojo/common:common_base", |
| 139 "//mojo/public/cpp/bindings", | 140 "//mojo/public/cpp/bindings", |
| 140 "//services/service_manager/public/cpp", | 141 "//services/service_manager/public/cpp", |
| 141 "//services/service_manager/public/interfaces", | 142 "//services/service_manager/public/interfaces", |
| 142 "//services/ui/common:mus_common", | 143 "//services/ui/common:mus_common", |
| 143 "//services/ui/common:server_gpu", | |
| 144 "//services/ui/display", | 144 "//services/ui/display", |
| 145 "//services/ui/public/interfaces", | 145 "//services/ui/public/interfaces", |
| 146 "//ui/base", | 146 "//ui/base", |
| 147 "//ui/display", | 147 "//ui/display", |
| 148 "//ui/events", | 148 "//ui/events", |
| 149 "//ui/events/devices", | 149 "//ui/events/devices", |
| 150 "//ui/events/platform", | 150 "//ui/events/platform", |
| 151 "//ui/gfx", | 151 "//ui/gfx", |
| 152 "//ui/gfx/geometry", | 152 "//ui/gfx/geometry", |
| 153 "//ui/gfx/geometry/mojo", | 153 "//ui/gfx/geometry/mojo", |
| (...skipping 146 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 |