Chromium Code Reviews| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 116 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 116 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 117 cflags = [ "/wd4267" ] # size_t to int truncation. | 117 cflags = [ "/wd4267" ] # size_t to int truncation. |
| 118 } | 118 } |
| 119 | 119 |
| 120 deps = [ | 120 deps = [ |
| 121 ":gles2_cmd_helper", | 121 ":gles2_cmd_helper", |
| 122 ":gles2_interface", | 122 ":gles2_interface", |
| 123 "//base", | 123 "//base", |
| 124 "//gpu/command_buffer/common", | 124 "//gpu/command_buffer/common", |
| 125 "//ui/gfx/geometry", | 125 "//ui/gfx/geometry", |
| 126 "//ui/gl", | |
|
jamesr
2014/09/25 20:09:44
this isn't quite correct - gles2_implementation.cc
DaveMoore
2014/09/26 18:29:22
I created a new kEnableGPUServiceLoggingGPU flag i
| |
| 127 ] | 126 ] |
| 128 } | 127 } |
| 129 | 128 |
| 130 # Library emulates GLES2 using command_buffers. | 129 # Library emulates GLES2 using command_buffers. |
| 131 component("gles2_implementation_client_side_arrays") { | 130 component("gles2_implementation_client_side_arrays") { |
| 132 sources = gles2_implementation_source_files | 131 sources = gles2_implementation_source_files |
| 133 | 132 |
| 134 defines = [ | 133 defines = [ |
| 135 "GLES2_IMPL_IMPLEMENTATION", | 134 "GLES2_IMPL_IMPLEMENTATION", |
| 136 "GLES2_SUPPORT_CLIENT_SIDE_ARRAYS=1", | 135 "GLES2_SUPPORT_CLIENT_SIDE_ARRAYS=1", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 183 | 182 |
| 184 deps = [ | 183 deps = [ |
| 185 ":client", | 184 ":client", |
| 186 ":gles2_interface", | 185 ":gles2_interface", |
| 187 "//base", | 186 "//base", |
| 188 "//base/third_party/dynamic_annotations", | 187 "//base/third_party/dynamic_annotations", |
| 189 "//gpu/command_buffer/common", | 188 "//gpu/command_buffer/common", |
| 190 ] | 189 ] |
| 191 } | 190 } |
| 192 | 191 |
| OLD | NEW |