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

Side by Side Diff: components/viz/service/BUILD.gn

Issue 2933493003: Add viz-host HitTestQuery. (Closed)
Patch Set: more check for |child_count| Created 3 years, 5 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 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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("//components/viz/viz.gni") 6 import("//components/viz/viz.gni")
7 7
8 config("viz_service_implementation") { 8 config("viz_service_implementation") {
9 } 9 }
10 10
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 "//build/config/compiler:no_size_t_to_int_warning", 148 "//build/config/compiler:no_size_t_to_int_warning",
149 "//third_party/khronos:khronos_headers", 149 "//third_party/khronos:khronos_headers",
150 ] 150 ]
151 151
152 deps = [ 152 deps = [
153 ":service", 153 ":service",
154 "//base", 154 "//base",
155 "//base/test:test_support", 155 "//base/test:test_support",
156 "//cc:test_support", 156 "//cc:test_support",
157 "//components/viz/common", 157 "//components/viz/common",
158 "//components/viz/host/hit_test",
158 "//gpu/command_buffer/client", 159 "//gpu/command_buffer/client",
159 "//gpu/command_buffer/client:gles2_implementation", 160 "//gpu/command_buffer/client:gles2_implementation",
160 "//gpu/ipc:gl_in_process_context", 161 "//gpu/ipc:gl_in_process_context",
161 "//media", 162 "//media",
162 "//services/viz/hit_test/public/interfaces", 163 "//services/viz/hit_test/public/interfaces",
163 "//skia", 164 "//skia",
164 "//testing/gmock", 165 "//testing/gmock",
165 "//testing/gtest", 166 "//testing/gtest",
166 "//ui/display/types", 167 "//ui/display/types",
167 ] 168 ]
168 } 169 }
169 170
170 viz_source_set("perf_tests") { 171 viz_source_set("perf_tests") {
171 testonly = true 172 testonly = true
172 sources = [ 173 sources = [
173 "display/surface_aggregator_perftest.cc", 174 "display/surface_aggregator_perftest.cc",
174 ] 175 ]
175 176
176 deps = [ 177 deps = [
177 ":service", 178 ":service",
178 "//base", 179 "//base",
179 "//cc:test_support", 180 "//cc:test_support",
180 "//cc/base", 181 "//cc/base",
181 "//testing/gtest", 182 "//testing/gtest",
182 "//testing/perf", 183 "//testing/perf",
183 ] 184 ]
184 } 185 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698