OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 source_set("client") { | 5 source_set("client") { |
6 sources = [ | 6 sources = [ |
7 "cmd_buffer_helper.cc", | 7 "cmd_buffer_helper.cc", |
8 "cmd_buffer_helper.h", | 8 "cmd_buffer_helper.h", |
9 "fenced_allocator.cc", | 9 "fenced_allocator.cc", |
10 "fenced_allocator.h", | 10 "fenced_allocator.h", |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 "gles2_implementation.cc", | 77 "gles2_implementation.cc", |
78 "gles2_implementation.h", | 78 "gles2_implementation.h", |
79 "gles2_implementation_impl_autogen.h", | 79 "gles2_implementation_impl_autogen.h", |
80 "gles2_trace_implementation_autogen.h", | 80 "gles2_trace_implementation_autogen.h", |
81 "gles2_trace_implementation.cc", | 81 "gles2_trace_implementation.cc", |
82 "gles2_trace_implementation.h", | 82 "gles2_trace_implementation.h", |
83 "gles2_trace_implementation_impl_autogen.h", | 83 "gles2_trace_implementation_impl_autogen.h", |
84 "gpu_memory_buffer_factory.h", | 84 "gpu_memory_buffer_factory.h", |
85 "gpu_memory_buffer_tracker.cc", | 85 "gpu_memory_buffer_tracker.cc", |
86 "gpu_memory_buffer_tracker.h", | 86 "gpu_memory_buffer_tracker.h", |
| 87 "gpu_switches.cc", |
| 88 "gpu_switches.h", |
87 "program_info_manager.cc", | 89 "program_info_manager.cc", |
88 "program_info_manager.h", | 90 "program_info_manager.h", |
89 "query_tracker.cc", | 91 "query_tracker.cc", |
90 "query_tracker.h", | 92 "query_tracker.h", |
91 "share_group.cc", | 93 "share_group.cc", |
92 "share_group.h", | 94 "share_group.h", |
93 "vertex_array_object_manager.cc", | 95 "vertex_array_object_manager.cc", |
94 "vertex_array_object_manager.h", | 96 "vertex_array_object_manager.h", |
95 ] | 97 ] |
96 | 98 |
(...skipping 19 matching lines...) Expand all Loading... |
116 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 118 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
117 cflags = [ "/wd4267" ] # size_t to int truncation. | 119 cflags = [ "/wd4267" ] # size_t to int truncation. |
118 } | 120 } |
119 | 121 |
120 deps = [ | 122 deps = [ |
121 ":gles2_cmd_helper", | 123 ":gles2_cmd_helper", |
122 ":gles2_interface", | 124 ":gles2_interface", |
123 "//base", | 125 "//base", |
124 "//gpu/command_buffer/common", | 126 "//gpu/command_buffer/common", |
125 "//ui/gfx/geometry", | 127 "//ui/gfx/geometry", |
126 "//ui/gl", | |
127 ] | 128 ] |
128 } | 129 } |
129 | 130 |
130 # Library emulates GLES2 using command_buffers. | 131 # Library emulates GLES2 using command_buffers. |
131 component("gles2_implementation_client_side_arrays") { | 132 component("gles2_implementation_client_side_arrays") { |
132 sources = gles2_implementation_source_files | 133 sources = gles2_implementation_source_files |
133 | 134 |
134 defines = [ | 135 defines = [ |
135 "GLES2_IMPL_IMPLEMENTATION", | 136 "GLES2_IMPL_IMPLEMENTATION", |
136 "GLES2_SUPPORT_CLIENT_SIDE_ARRAYS=1", | 137 "GLES2_SUPPORT_CLIENT_SIDE_ARRAYS=1", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 | 184 |
184 deps = [ | 185 deps = [ |
185 ":client", | 186 ":client", |
186 ":gles2_interface", | 187 ":gles2_interface", |
187 "//base", | 188 "//base", |
188 "//base/third_party/dynamic_annotations", | 189 "//base/third_party/dynamic_annotations", |
189 "//gpu/command_buffer/common", | 190 "//gpu/command_buffer/common", |
190 ] | 191 ] |
191 } | 192 } |
192 | 193 |
OLD | NEW |