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_common" just forwarding) and goes into a static library in | 6 # "command_buffer_common" just forwarding) and goes into a static library in |
7 # non-component build. This needs to match the GYP build which was likely an | 7 # non-component build. This needs to match the GYP build which was likely an |
8 # attempt to make larger components to help with loading. | 8 # attempt to make larger components to help with loading. |
9 | 9 |
10 group("common") { | 10 group("common") { |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 sources = [ | 73 sources = [ |
74 "gles2_cmd_utils.cc", | 74 "gles2_cmd_utils.cc", |
75 "gles2_cmd_utils.h", | 75 "gles2_cmd_utils.h", |
76 "gles2_utils_export.h", | 76 "gles2_utils_export.h", |
77 ] | 77 ] |
78 | 78 |
79 defines = [ "GLES2_UTILS_IMPLEMENTATION" ] | 79 defines = [ "GLES2_UTILS_IMPLEMENTATION" ] |
80 | 80 |
81 deps = [ | 81 deps = [ |
82 "//base", | 82 "//base", |
83 "//ui/gfx/geometry", | |
84 ] | 83 ] |
85 | 84 |
86 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] | 85 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] |
87 } | 86 } |
OLD | NEW |