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

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

Issue 2937233002: Use HitTestAggregator in GpuRootCompositorFrameSink (Closed)
Patch Set: rebase and move switches from base to common 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/common",
53 "//components/viz/hit_test",
Fady Samuel 2017/06/20 17:18:39 What's components/viz/hit_test?
gklassen 2017/07/17 16:55:08 Done.
52 "//gpu/command_buffer/client", 54 "//gpu/command_buffer/client",
53 "//gpu/command_buffer/client:gles2_interface", 55 "//gpu/command_buffer/client:gles2_interface",
54 "//gpu/command_buffer/common", 56 "//gpu/command_buffer/common",
55 "//gpu/ipc:command_buffer", 57 "//gpu/ipc:command_buffer",
56 "//gpu/ipc/common:surface_handle_type", 58 "//gpu/ipc/common:surface_handle_type",
57 "//skia", 59 "//skia",
58 "//ui/display/types", 60 "//ui/display/types",
59 "//ui/gfx", 61 "//ui/gfx",
60 ] 62 ]
61 63
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 "//skia", 191 "//skia",
190 "//testing/gmock", 192 "//testing/gmock",
191 "//testing/gtest", 193 "//testing/gtest",
192 "//ui/gl:test_support", 194 "//ui/gl:test_support",
193 ] 195 ]
194 196
195 data_deps = [ 197 data_deps = [
196 "//third_party/mesa:osmesa", 198 "//third_party/mesa:osmesa",
197 ] 199 ]
198 } 200 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698