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

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

Issue 2933493003: Add viz-host HitTestQuery. (Closed)
Patch Set: comment #6 #7 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 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("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 config("viz_service_implementation") { 8 config("viz_service_implementation") {
9 } 9 }
10 10
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 42
43 defines = [ "VIZ_SERVICE_IMPLEMENTATION" ] 43 defines = [ "VIZ_SERVICE_IMPLEMENTATION" ]
44 44
45 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 45 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
46 46
47 public_deps = [ 47 public_deps = [
48 "//base", 48 "//base",
49 "//cc", 49 "//cc",
50 "//cc/ipc:interfaces", 50 "//cc/ipc:interfaces",
51 "//cc/surfaces", 51 "//cc/surfaces",
52 "//components/viz/host/hit_test",
52 "//gpu/command_buffer/client", 53 "//gpu/command_buffer/client",
53 "//gpu/command_buffer/client:gles2_interface", 54 "//gpu/command_buffer/client:gles2_interface",
54 "//gpu/command_buffer/common", 55 "//gpu/command_buffer/common",
55 "//gpu/ipc:command_buffer", 56 "//gpu/ipc:command_buffer",
56 "//gpu/ipc/common:surface_handle_type", 57 "//gpu/ipc/common:surface_handle_type",
57 "//skia", 58 "//skia",
58 "//ui/display/types", 59 "//ui/display/types",
59 "//ui/gfx", 60 "//ui/gfx",
60 ] 61 ]
61 62
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 "//skia", 190 "//skia",
190 "//testing/gmock", 191 "//testing/gmock",
191 "//testing/gtest", 192 "//testing/gtest",
192 "//ui/gl:test_support", 193 "//ui/gl:test_support",
193 ] 194 ]
194 195
195 data_deps = [ 196 data_deps = [
196 "//third_party/mesa:osmesa", 197 "//third_party/mesa:osmesa",
197 ] 198 ]
198 } 199 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698