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
3 # found in the LICENSE file.
7 "cmd_buffer_helper.cc",
20 defines = [ "GPU_IMPLEMENTATION" ]
23 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
24 cflags = [ "/wd4267" ] # size_t to int truncation.
27 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ]
30 "//gpu/command_buffer/common",
34 group("gles2_cmd_helper") {
35 if (is_component_build) {
38 deps = [ ":gles2_cmd_helper_sources" ]
42 source_set("gles2_cmd_helper_sources") {
43 visibility = [ ":gles2_cmd_helper", "//gpu" ]
45 "gles2_cmd_helper.cc",
47 "gles2_cmd_helper_autogen.h",
50 defines = [ "GPU_IMPLEMENTATION" ]
53 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
54 cflags = [ "/wd4267" ] # size_t to int truncation.
60 gles2_c_lib_source_files = [
62 "gles2_c_lib_autogen.h",
63 "gles2_c_lib_export.h",
68 gles2_implementation_source_files = [
71 "client_context_state.h",
72 "client_context_state.cc",
73 "client_context_state_autogen.h",
74 "client_context_state_impl_autogen.h",
75 "gles2_impl_export.h",
76 "gles2_implementation_autogen.h",
77 "gles2_implementation.cc",
78 "gles2_implementation.h",
79 "gles2_implementation_impl_autogen.h",
80 "gles2_trace_implementation_autogen.h",
81 "gles2_trace_implementation.cc",
82 "gles2_trace_implementation.h",
83 "gles2_trace_implementation_impl_autogen.h",
86 "program_info_manager.cc",
87 "program_info_manager.h",
92 "vertex_array_object_manager.cc",
93 "vertex_array_object_manager.h",
96 # Provides GLES2 interface, but does not cause any implementation to be linked
97 # in. Useful when a target uses the interface, but permits its users to choose
99 source_set("gles2_interface") {
100 sources = [ "gles2_interface.h" ]
101 public_configs = [ "//third_party/khronos:khronos_headers" ]
107 source_set("gpu_memory_buffer_manager") {
109 "gpu_memory_buffer_manager.cc",
110 "gpu_memory_buffer_manager.h",
117 # Library emulates GLES2 using command_buffers.
118 component("gles2_implementation") {
119 sources = gles2_implementation_source_files
121 defines = [ "GLES2_IMPL_IMPLEMENTATION" ]
122 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ]
125 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
126 cflags = [ "/wd4267" ] # size_t to int truncation.
133 "//gpu/command_buffer/common",
138 component("gl_in_process_context") {
140 "gl_in_process_context.h",
141 "gl_in_process_context.cc",
142 "gl_in_process_context_export.h",
145 defines = [ "GL_IN_PROCESS_CONTEXT_IMPLEMENTATION" ]
148 ":gles2_implementation",
149 ":gpu_memory_buffer_manager",
151 "//gpu/command_buffer/common:gles2_utils",
153 "//base/third_party/dynamic_annotations",
159 component("gles2_c_lib") {
160 sources = gles2_c_lib_source_files
161 defines = [ "GLES2_C_LIB_IMPLEMENTATION" ]
164 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
165 cflags = [ "/wd4267" ] # size_t to int truncation.
172 "//base/third_party/dynamic_annotations",
173 "//gpu/command_buffer/common",