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

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

Issue 2938953002: Implement HitTestAggregator (Closed)
Patch Set: correct mojom include directory and improvements based on reviewer comments 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
« no previous file with comments | « no previous file | components/viz/common/hit_test/DEPS » ('j') | no next file with comments »
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 import("//components/viz/viz.gni") 5 import("//components/viz/viz.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 viz_source_set("common") { 8 viz_source_set("common") {
9 sources = [ 9 sources = [
10 "gl_helper.cc", 10 "gl_helper.cc",
11 "gl_helper.h", 11 "gl_helper.h",
12 "gl_helper_readback_support.cc", 12 "gl_helper_readback_support.cc",
13 "gl_helper_readback_support.h", 13 "gl_helper_readback_support.h",
14 "gl_helper_scaling.cc", 14 "gl_helper_scaling.cc",
15 "gl_helper_scaling.h", 15 "gl_helper_scaling.h",
16 "hit_test/aggregated_hit_test_region.h",
16 "quads/resource_format.h", 17 "quads/resource_format.h",
17 "quads/shared_bitmap.cc", 18 "quads/shared_bitmap.cc",
18 "quads/shared_bitmap.h", 19 "quads/shared_bitmap.h",
19 "quads/texture_mailbox.cc", 20 "quads/texture_mailbox.cc",
20 "quads/texture_mailbox.h", 21 "quads/texture_mailbox.h",
21 "resources/buffer_to_texture_target_map.cc", 22 "resources/buffer_to_texture_target_map.cc",
22 "resources/buffer_to_texture_target_map.h", 23 "resources/buffer_to_texture_target_map.h",
23 "resources/platform_color.h", 24 "resources/platform_color.h",
24 "resources/resource_format_utils.cc", 25 "resources/resource_format_utils.cc",
25 "resources/resource_format_utils.h", 26 "resources/resource_format_utils.h",
(...skipping 18 matching lines...) Expand all
44 "surfaces/surface_sequence_generator.cc", 45 "surfaces/surface_sequence_generator.cc",
45 "surfaces/surface_sequence_generator.h", 46 "surfaces/surface_sequence_generator.h",
46 ] 47 ]
47 48
48 deps = [ 49 deps = [
49 "//base", 50 "//base",
50 "//gpu/command_buffer/client:gles2_interface", 51 "//gpu/command_buffer/client:gles2_interface",
51 "//mojo/public/cpp/bindings", 52 "//mojo/public/cpp/bindings",
52 "//skia", 53 "//skia",
53 "//ui/gfx:color_space", 54 "//ui/gfx:color_space",
55 "//ui/gfx:geometry_skia",
54 "//ui/gfx/geometry", 56 "//ui/gfx/geometry",
55 ] 57 ]
56 58
57 public_deps = [ 59 public_deps = [
58 "//gpu/command_buffer/client", 60 "//gpu/command_buffer/client",
59 "//gpu/command_buffer/common", 61 "//gpu/command_buffer/common",
60 "//mojo/public/cpp/bindings", 62 "//mojo/public/cpp/bindings",
61 ] 63 ]
62 } 64 }
63 65
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 "//gpu/ipc:gl_in_process_context", 106 "//gpu/ipc:gl_in_process_context",
105 "//testing/gmock", 107 "//testing/gmock",
106 "//testing/gtest", 108 "//testing/gtest",
107 "//ui/gfx", 109 "//ui/gfx",
108 ] 110 ]
109 111
110 data_deps = [ 112 data_deps = [
111 "//third_party/mesa:osmesa", 113 "//third_party/mesa:osmesa",
112 ] 114 ]
113 } 115 }
OLDNEW
« no previous file with comments | « no previous file | components/viz/common/hit_test/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698