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 28 matching lines...) Expand all Loading... |
39 deps = [ | 39 deps = [ |
40 ":gles2_cmd_helper_sources", | 40 ":gles2_cmd_helper_sources", |
41 ] | 41 ] |
42 } | 42 } |
43 } | 43 } |
44 | 44 |
45 source_set("gles2_cmd_helper_sources") { | 45 source_set("gles2_cmd_helper_sources") { |
46 visibility = [ | 46 visibility = [ |
47 ":gles2_cmd_helper", | 47 ":gles2_cmd_helper", |
48 "//gpu", | 48 "//gpu", |
| 49 "//mojo/gles2:control_thunks", |
49 ] | 50 ] |
50 sources = [ | 51 sources = [ |
51 "gles2_cmd_helper.cc", | 52 "gles2_cmd_helper.cc", |
52 "gles2_cmd_helper.h", | 53 "gles2_cmd_helper.h", |
53 "gles2_cmd_helper_autogen.h", | 54 "gles2_cmd_helper_autogen.h", |
54 ] | 55 ] |
55 | 56 |
56 configs += [ | 57 configs += [ |
57 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 58 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
58 "//build/config/compiler:no_size_t_to_int_warning", | 59 "//build/config/compiler:no_size_t_to_int_warning", |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 ] | 214 ] |
214 deps = [ | 215 deps = [ |
215 ":client", | 216 ":client", |
216 ":gles2_implementation_no_check", | 217 ":gles2_implementation_no_check", |
217 ":gles2_interface", | 218 ":gles2_interface", |
218 "//base", | 219 "//base", |
219 "//base/third_party/dynamic_annotations", | 220 "//base/third_party/dynamic_annotations", |
220 "//gpu/command_buffer/common", | 221 "//gpu/command_buffer/common", |
221 ] | 222 ] |
222 } | 223 } |
OLD | NEW |