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 # The files here go into the "gpu" component in a component build (with | 5 # The files here go into the "gpu" component in a component build (with |
6 # "command_buffer_client" and "gles2_cmd_helper" just forwarding) and goes into | 6 # "command_buffer_client" and "gles2_cmd_helper" just forwarding) and goes into |
7 # separate static libraries in non-component build. This needs to match the | 7 # separate static libraries in non-component build. This needs to match the |
8 # GYP build which was likely an attempt to make larger components to help with | 8 # GYP build which was likely an attempt to make larger components to help with |
9 # loading. | 9 # loading. |
10 group("client") { | 10 group("client") { |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 | 52 |
53 configs += [ | 53 configs += [ |
54 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 54 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
55 "//build/config/compiler:no_size_t_to_int_warning", | 55 "//build/config/compiler:no_size_t_to_int_warning", |
56 "//gpu:gpu_implementation", | 56 "//gpu:gpu_implementation", |
57 ] | 57 ] |
58 | 58 |
59 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] | 59 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] |
60 | 60 |
61 deps = [ | 61 deps = [ |
| 62 "//base", |
62 "//gpu/command_buffer/common:common_sources", | 63 "//gpu/command_buffer/common:common_sources", |
| 64 "//gpu/command_buffer/common:gles2_utils", |
| 65 "//ui/gfx", |
| 66 "//ui/gfx/geometry", |
63 ] | 67 ] |
64 } | 68 } |
65 | 69 |
66 source_set("gles2_cmd_helper_sources") { | 70 source_set("gles2_cmd_helper_sources") { |
67 visibility = [ "//gpu/*" ] | 71 visibility = [ "//gpu/*" ] |
68 sources = [ | 72 sources = [ |
69 "gles2_cmd_helper.cc", | 73 "gles2_cmd_helper.cc", |
70 "gles2_cmd_helper.h", | 74 "gles2_cmd_helper.h", |
71 "gles2_cmd_helper_autogen.h", | 75 "gles2_cmd_helper_autogen.h", |
72 ] | 76 ] |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 ] | 223 ] |
220 deps = [ | 224 deps = [ |
221 ":client", | 225 ":client", |
222 ":gles2_implementation_no_check", | 226 ":gles2_implementation_no_check", |
223 ":gles2_interface", | 227 ":gles2_interface", |
224 "//base", | 228 "//base", |
225 "//base/third_party/dynamic_annotations", | 229 "//base/third_party/dynamic_annotations", |
226 "//gpu/command_buffer/common", | 230 "//gpu/command_buffer/common", |
227 ] | 231 ] |
228 } | 232 } |
OLD | NEW |