| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 sources = gles2_c_lib_source_files | 150 sources = gles2_c_lib_source_files |
| 151 defines = [ "GLES2_C_LIB_IMPLEMENTATION" ] | 151 defines = [ "GLES2_C_LIB_IMPLEMENTATION" ] |
| 152 | 152 |
| 153 if (is_win) { | 153 if (is_win) { |
| 154 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 154 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 155 cflags = [ "/wd4267" ] # size_t to int truncation. | 155 cflags = [ "/wd4267" ] # size_t to int truncation. |
| 156 } | 156 } |
| 157 | 157 |
| 158 deps = [ | 158 deps = [ |
| 159 ":client", | 159 ":client", |
| 160 ":gles2_implementation", | |
| 161 "//base", | 160 "//base", |
| 162 "//base/third_party/dynamic_annotations", | 161 "//base/third_party/dynamic_annotations", |
| 163 "//gpu/command_buffer/common", | 162 "//gpu/command_buffer/common", |
| 164 ] | 163 ] |
| 165 } | 164 } |
| 166 | 165 |
| OLD | NEW |