| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 "client_context_state_impl_autogen.h", | 74 "client_context_state_impl_autogen.h", |
| 75 "gles2_impl_export.h", | 75 "gles2_impl_export.h", |
| 76 "gles2_implementation_autogen.h", | 76 "gles2_implementation_autogen.h", |
| 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", | |
| 85 "gpu_memory_buffer_tracker.cc", | |
| 86 "gpu_memory_buffer_tracker.h", | |
| 87 "gpu_switches.cc", | 84 "gpu_switches.cc", |
| 88 "gpu_switches.h", | 85 "gpu_switches.h", |
| 89 "program_info_manager.cc", | 86 "program_info_manager.cc", |
| 90 "program_info_manager.h", | 87 "program_info_manager.h", |
| 91 "query_tracker.cc", | 88 "query_tracker.cc", |
| 92 "query_tracker.h", | 89 "query_tracker.h", |
| 93 "share_group.cc", | 90 "share_group.cc", |
| 94 "share_group.h", | 91 "share_group.h", |
| 95 "vertex_array_object_manager.cc", | 92 "vertex_array_object_manager.cc", |
| 96 "vertex_array_object_manager.h", | 93 "vertex_array_object_manager.h", |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 | 181 |
| 185 deps = [ | 182 deps = [ |
| 186 ":client", | 183 ":client", |
| 187 ":gles2_interface", | 184 ":gles2_interface", |
| 188 "//base", | 185 "//base", |
| 189 "//base/third_party/dynamic_annotations", | 186 "//base/third_party/dynamic_annotations", |
| 190 "//gpu/command_buffer/common", | 187 "//gpu/command_buffer/common", |
| 191 ] | 188 ] |
| 192 } | 189 } |
| 193 | 190 |
| OLD | NEW |