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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 "gles2_implementation.h", | 87 "gles2_implementation.h", |
88 "gles2_implementation_impl_autogen.h", | 88 "gles2_implementation_impl_autogen.h", |
89 "gles2_trace_implementation_autogen.h", | 89 "gles2_trace_implementation_autogen.h", |
90 "gles2_trace_implementation.cc", | 90 "gles2_trace_implementation.cc", |
91 "gles2_trace_implementation.h", | 91 "gles2_trace_implementation.h", |
92 "gles2_trace_implementation_impl_autogen.h", | 92 "gles2_trace_implementation_impl_autogen.h", |
93 "gpu_switches.cc", | 93 "gpu_switches.cc", |
94 "gpu_switches.h", | 94 "gpu_switches.h", |
95 "program_info_manager.cc", | 95 "program_info_manager.cc", |
96 "program_info_manager.h", | 96 "program_info_manager.h", |
| 97 "program_info_manager_program.h", |
97 "query_tracker.cc", | 98 "query_tracker.cc", |
98 "query_tracker.h", | 99 "query_tracker.h", |
99 "share_group.cc", | 100 "share_group.cc", |
100 "share_group.h", | 101 "share_group.h", |
101 "vertex_array_object_manager.cc", | 102 "vertex_array_object_manager.cc", |
102 "vertex_array_object_manager.h", | 103 "vertex_array_object_manager.h", |
103 ] | 104 ] |
104 | 105 |
105 # Provides GLES2 interface, but does not cause any implementation to be linked | 106 # Provides GLES2 interface, but does not cause any implementation to be linked |
106 # in. Useful when a target uses the interface, but permits its users to choose | 107 # in. Useful when a target uses the interface, but permits its users to choose |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 } | 178 } |
178 | 179 |
179 deps = [ | 180 deps = [ |
180 ":client", | 181 ":client", |
181 ":gles2_interface", | 182 ":gles2_interface", |
182 "//base", | 183 "//base", |
183 "//base/third_party/dynamic_annotations", | 184 "//base/third_party/dynamic_annotations", |
184 "//gpu/command_buffer/common", | 185 "//gpu/command_buffer/common", |
185 ] | 186 ] |
186 } | 187 } |
OLD | NEW |