Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(520)

Side by Side Diff: services/ui/ws/BUILD.gn

Issue 2939953004: viz: Move some code into //components/viz/common. (Closed)
Patch Set: . Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split. 128 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split.
129 "//services/ui/gpu/interfaces", 129 "//services/ui/gpu/interfaces",
130 ] 130 ]
131 131
132 public_deps = [ 132 public_deps = [
133 "//base", 133 "//base",
134 "//cc", 134 "//cc",
135 "//cc/ipc:interfaces", 135 "//cc/ipc:interfaces",
136 "//cc/surfaces", 136 "//cc/surfaces",
137 "//cc/surfaces:surface_id", 137 "//cc/surfaces:surface_id",
138 "//components/viz/common",
danakj 2017/06/14 22:57:57 I don't think this belongs as a public_dep? This c
sadrul 2017/06/14 23:18:34 You are right. Moved into dep.
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698