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

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

Issue 2933493003: Add viz-host HitTestQuery. (Closed)
Patch Set: don't combine uint and int; check for overflow 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("//components/viz/viz.gni") 5 import("//components/viz/viz.gni")
6 6
7 viz_component("host") { 7 viz_component("host") {
8 defines = [ "VIZ_HOST_IMPLEMENTATION" ] 8 defines = [ "VIZ_HOST_IMPLEMENTATION" ]
9 9
10 sources = [ 10 sources = [
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 "host_frame_sink_manager_unittests.cc", 42 "host_frame_sink_manager_unittests.cc",
43 "server_gpu_memory_buffer_manager_unittest.cc", 43 "server_gpu_memory_buffer_manager_unittest.cc",
44 ] 44 ]
45 45
46 deps = [ 46 deps = [
47 ":host", 47 ":host",
48 "//base", 48 "//base",
49 "//base/test:test_support", 49 "//base/test:test_support",
50 "//cc/ipc:interfaces", 50 "//cc/ipc:interfaces",
51 "//cc/surfaces", 51 "//cc/surfaces",
52 "//components/viz/host/hit_test:unit_tests",
52 "//gpu/ipc/host", 53 "//gpu/ipc/host",
53 "//mojo/public/cpp/bindings", 54 "//mojo/public/cpp/bindings",
54 "//services/ui/gpu/interfaces", 55 "//services/ui/gpu/interfaces",
55 "//testing/gmock", 56 "//testing/gmock",
56 "//testing/gtest", 57 "//testing/gtest",
57 58
58 # TODO(kylechar): This is temporary and will be removed when all host to 59 # TODO(kylechar): This is temporary and will be removed when all host to
59 # service communication is over Mojo. 60 # service communication is over Mojo.
60 "//components/viz/service", 61 "//components/viz/service",
61 ] 62 ]
62 } 63 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698