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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 | 63 |
64 deps = [ | 64 deps = [ |
65 ":client", | 65 ":client", |
66 ] | 66 ] |
67 } | 67 } |
68 | 68 |
69 gles2_c_lib_source_files = [ | 69 gles2_c_lib_source_files = [ |
70 "gles2_c_lib.cc", | 70 "gles2_c_lib.cc", |
71 "gles2_c_lib_autogen.h", | 71 "gles2_c_lib_autogen.h", |
72 "gles2_c_lib_export.h", | 72 "gles2_c_lib_export.h", |
| 73 "gles2_lib.cc", |
73 "gles2_lib.h", | 74 "gles2_lib.h", |
74 "gles2_lib.cc", | |
75 ] | 75 ] |
76 | 76 |
77 gles2_implementation_source_files = [ | 77 gles2_implementation_source_files = [ |
78 "buffer_tracker.cc", | 78 "buffer_tracker.cc", |
79 "buffer_tracker.h", | 79 "buffer_tracker.h", |
| 80 "client_context_state.cc", |
80 "client_context_state.h", | 81 "client_context_state.h", |
81 "client_context_state.cc", | |
82 "client_context_state_autogen.h", | 82 "client_context_state_autogen.h", |
83 "client_context_state_impl_autogen.h", | 83 "client_context_state_impl_autogen.h", |
84 "gles2_impl_export.h", | 84 "gles2_impl_export.h", |
85 "gles2_implementation_autogen.h", | |
86 "gles2_implementation.cc", | 85 "gles2_implementation.cc", |
87 "gles2_implementation.h", | 86 "gles2_implementation.h", |
| 87 "gles2_implementation_autogen.h", |
88 "gles2_implementation_impl_autogen.h", | 88 "gles2_implementation_impl_autogen.h", |
89 "gles2_trace_implementation_autogen.h", | |
90 "gles2_trace_implementation.cc", | 89 "gles2_trace_implementation.cc", |
91 "gles2_trace_implementation.h", | 90 "gles2_trace_implementation.h", |
| 91 "gles2_trace_implementation_autogen.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 "query_tracker.cc", | 97 "query_tracker.cc", |
98 "query_tracker.h", | 98 "query_tracker.h", |
99 "share_group.cc", | 99 "share_group.cc", |
100 "share_group.h", | 100 "share_group.h", |
101 "vertex_array_object_manager.cc", | 101 "vertex_array_object_manager.cc", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 ":gles2_cmd_helper", | 141 ":gles2_cmd_helper", |
142 ":gles2_interface", | 142 ":gles2_interface", |
143 "//base", | 143 "//base", |
144 "//gpu/command_buffer/common", | 144 "//gpu/command_buffer/common", |
145 "//ui/gfx/geometry", | 145 "//ui/gfx/geometry", |
146 ] | 146 ] |
147 } | 147 } |
148 | 148 |
149 component("gl_in_process_context") { | 149 component("gl_in_process_context") { |
150 sources = [ | 150 sources = [ |
| 151 "gl_in_process_context.cc", |
151 "gl_in_process_context.h", | 152 "gl_in_process_context.h", |
152 "gl_in_process_context.cc", | |
153 "gl_in_process_context_export.h", | 153 "gl_in_process_context_export.h", |
154 ] | 154 ] |
155 | 155 |
156 defines = [ "GL_IN_PROCESS_CONTEXT_IMPLEMENTATION" ] | 156 defines = [ "GL_IN_PROCESS_CONTEXT_IMPLEMENTATION" ] |
157 | 157 |
158 deps = [ | 158 deps = [ |
159 ":gles2_implementation", | 159 ":gles2_implementation", |
160 ":gpu_memory_buffer_manager", | 160 ":gpu_memory_buffer_manager", |
161 "//gpu", | 161 "//gpu", |
162 "//gpu/command_buffer/common:gles2_utils", | 162 "//gpu/command_buffer/common:gles2_utils", |
(...skipping 14 matching lines...) Expand all Loading... |
177 } | 177 } |
178 | 178 |
179 deps = [ | 179 deps = [ |
180 ":client", | 180 ":client", |
181 ":gles2_interface", | 181 ":gles2_interface", |
182 "//base", | 182 "//base", |
183 "//base/third_party/dynamic_annotations", | 183 "//base/third_party/dynamic_annotations", |
184 "//gpu/command_buffer/common", | 184 "//gpu/command_buffer/common", |
185 ] | 185 ] |
186 } | 186 } |
OLD | NEW |