| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 "share_group.h", | 92 "share_group.h", |
| 93 "vertex_array_object_manager.cc", | 93 "vertex_array_object_manager.cc", |
| 94 "vertex_array_object_manager.h", | 94 "vertex_array_object_manager.h", |
| 95 ] | 95 ] |
| 96 | 96 |
| 97 # Provides GLES2 interface, but does not cause any implementation to be linked | 97 # Provides GLES2 interface, but does not cause any implementation to be linked |
| 98 # in. Useful when a target uses the interface, but permits its users to choose | 98 # in. Useful when a target uses the interface, but permits its users to choose |
| 99 # an implementation. | 99 # an implementation. |
| 100 source_set("gles2_interface") { | 100 source_set("gles2_interface") { |
| 101 sources = [ "gles2_interface.h" ] | 101 sources = [ "gles2_interface.h" ] |
| 102 direct_dependent_configs = [ "//third_party/khronos:khronos_headers" ] | 102 public_configs = [ "//third_party/khronos:khronos_headers" ] |
| 103 deps = [ | 103 deps = [ |
| 104 "//base", | 104 "//base", |
| 105 ] | 105 ] |
| 106 } | 106 } |
| 107 | 107 |
| 108 # Library emulates GLES2 using command_buffers. | 108 # Library emulates GLES2 using command_buffers. |
| 109 component("gles2_implementation") { | 109 component("gles2_implementation") { |
| 110 sources = gles2_implementation_source_files | 110 sources = gles2_implementation_source_files |
| 111 | 111 |
| 112 defines = [ "GLES2_IMPL_IMPLEMENTATION" ] | 112 defines = [ "GLES2_IMPL_IMPLEMENTATION" ] |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 | 183 |
| 184 deps = [ | 184 deps = [ |
| 185 ":client", | 185 ":client", |
| 186 ":gles2_interface", | 186 ":gles2_interface", |
| 187 "//base", | 187 "//base", |
| 188 "//base/third_party/dynamic_annotations", | 188 "//base/third_party/dynamic_annotations", |
| 189 "//gpu/command_buffer/common", | 189 "//gpu/command_buffer/common", |
| 190 ] | 190 ] |
| 191 } | 191 } |
| 192 | 192 |
| OLD | NEW |