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

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

Issue 2933493003: Add viz-host HitTestQuery. (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
« no previous file with comments | « no previous file | components/viz/hit_test/BUILD.gn » ('j') | components/viz/hit_test/BUILD.gn » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 group("frame_sinks") { 5 group("frame_sinks") {
6 if (is_component_build) { 6 if (is_component_build) {
7 public_deps = [ 7 public_deps = [
8 "//components/viz", 8 "//components/viz",
9 ] 9 ]
10 } else { 10 } else {
(...skipping 17 matching lines...) Expand all
28 "mojo_frame_sink_manager.cc", 28 "mojo_frame_sink_manager.cc",
29 "mojo_frame_sink_manager.h", 29 "mojo_frame_sink_manager.h",
30 ] 30 ]
31 31
32 public_deps = [ 32 public_deps = [
33 "//base", 33 "//base",
34 "//cc", 34 "//cc",
35 "//cc/ipc:interfaces", 35 "//cc/ipc:interfaces",
36 "//cc/surfaces", 36 "//cc/surfaces",
37 "//components/viz/display_compositor:display_compositor_sources", 37 "//components/viz/display_compositor:display_compositor_sources",
38 "//components/viz/hit_test",
rjkroege 2017/06/12 17:17:23 must establish layering conventions I think.
riajiang 2017/06/13 18:42:29 This is only to run the HitTestQuery code, I think
38 "//gpu/ipc:command_buffer", 39 "//gpu/ipc:command_buffer",
39 ] 40 ]
40 41
41 configs += [ "//components/viz:viz_implementation" ] 42 configs += [ "//components/viz:viz_implementation" ]
42 43
43 if (is_win) { 44 if (is_win) {
44 cflags = [ "/wd4267" ] # conversion from 'size_t' to 'int' on x64 (crbug.co m/633312) 45 cflags = [ "/wd4267" ] # conversion from 'size_t' to 'int' on x64 (crbug.co m/633312)
45 } 46 }
46 } 47 }
OLDNEW
« no previous file with comments | « no previous file | components/viz/hit_test/BUILD.gn » ('j') | components/viz/hit_test/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698