| 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 17 matching lines...) Expand all Loading... |
| 28 "buffer.h", | 28 "buffer.h", |
| 29 "capabilities.cc", | 29 "capabilities.cc", |
| 30 "capabilities.h", | 30 "capabilities.h", |
| 31 "cmd_buffer_common.cc", | 31 "cmd_buffer_common.cc", |
| 32 "cmd_buffer_common.h", | 32 "cmd_buffer_common.h", |
| 33 "command_buffer.h", | 33 "command_buffer.h", |
| 34 "command_buffer_id.h", | 34 "command_buffer_id.h", |
| 35 "constants.h", | 35 "constants.h", |
| 36 "debug_marker_manager.cc", | 36 "debug_marker_manager.cc", |
| 37 "debug_marker_manager.h", | 37 "debug_marker_manager.h", |
| 38 "discardable_handle.cc", |
| 39 "discardable_handle.h", |
| 38 "gles2_cmd_format.cc", | 40 "gles2_cmd_format.cc", |
| 39 "gles2_cmd_format.h", | 41 "gles2_cmd_format.h", |
| 40 "gles2_cmd_format_autogen.h", | 42 "gles2_cmd_format_autogen.h", |
| 41 "gles2_cmd_ids.h", | 43 "gles2_cmd_ids.h", |
| 42 "gles2_cmd_ids_autogen.h", | 44 "gles2_cmd_ids_autogen.h", |
| 43 "gpu_memory_buffer_support.cc", | 45 "gpu_memory_buffer_support.cc", |
| 44 "gpu_memory_buffer_support.h", | 46 "gpu_memory_buffer_support.h", |
| 45 "id_allocator.cc", | 47 "id_allocator.cc", |
| 46 "id_allocator.h", | 48 "id_allocator.h", |
| 47 "id_type.h", | 49 "id_type.h", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 78 | 80 |
| 79 defines = [ "GLES2_UTILS_IMPLEMENTATION" ] | 81 defines = [ "GLES2_UTILS_IMPLEMENTATION" ] |
| 80 | 82 |
| 81 deps = [ | 83 deps = [ |
| 82 "//base", | 84 "//base", |
| 83 "//ui/gfx/geometry", | 85 "//ui/gfx/geometry", |
| 84 ] | 86 ] |
| 85 | 87 |
| 86 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] | 88 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] |
| 87 } | 89 } |
| OLD | NEW |