| 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 group("common") { | 9 group("common") { |
| 10 if (is_component_build) { | 10 if (is_component_build) { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 sources = [ | 24 sources = [ |
| 25 "bitfield_helpers.h", | 25 "bitfield_helpers.h", |
| 26 "buffer.cc", | 26 "buffer.cc", |
| 27 "buffer.h", | 27 "buffer.h", |
| 28 "capabilities.cc", | 28 "capabilities.cc", |
| 29 "capabilities.h", | 29 "capabilities.h", |
| 30 "cmd_buffer_common.cc", | 30 "cmd_buffer_common.cc", |
| 31 "cmd_buffer_common.h", | 31 "cmd_buffer_common.h", |
| 32 "command_buffer.h", | 32 "command_buffer.h", |
| 33 "command_buffer_id.h", |
| 33 "constants.h", | 34 "constants.h", |
| 34 "debug_marker_manager.cc", | 35 "debug_marker_manager.cc", |
| 35 "debug_marker_manager.h", | 36 "debug_marker_manager.h", |
| 36 "gles2_cmd_format.cc", | 37 "gles2_cmd_format.cc", |
| 37 "gles2_cmd_format.h", | 38 "gles2_cmd_format.h", |
| 38 "gles2_cmd_format_autogen.h", | 39 "gles2_cmd_format_autogen.h", |
| 39 "gles2_cmd_ids.h", | 40 "gles2_cmd_ids.h", |
| 40 "gles2_cmd_ids_autogen.h", | 41 "gles2_cmd_ids_autogen.h", |
| 41 "id_allocator.cc", | 42 "id_allocator.cc", |
| 42 "id_allocator.h", | 43 "id_allocator.h", |
| 43 "mailbox.cc", | 44 "mailbox.cc", |
| 44 "mailbox.h", | 45 "mailbox.h", |
| 45 "mailbox_holder.cc", | 46 "mailbox_holder.cc", |
| 46 "mailbox_holder.h", | 47 "mailbox_holder.h", |
| 48 "sync_token.cc", |
| 47 "sync_token.h", | 49 "sync_token.h", |
| 48 "thread_local.h", | 50 "thread_local.h", |
| 49 "time.h", | 51 "time.h", |
| 50 "value_state.cc", | 52 "value_state.cc", |
| 51 "value_state.h", | 53 "value_state.h", |
| 52 ] | 54 ] |
| 53 | 55 |
| 54 configs += [ "//gpu:gpu_implementation" ] | 56 configs += [ "//gpu:gpu_implementation" ] |
| 55 | 57 |
| 56 deps = [ | 58 deps = [ |
| (...skipping 10 matching lines...) Expand all Loading... |
| 67 ] | 69 ] |
| 68 | 70 |
| 69 defines = [ "GLES2_UTILS_IMPLEMENTATION" ] | 71 defines = [ "GLES2_UTILS_IMPLEMENTATION" ] |
| 70 | 72 |
| 71 deps = [ | 73 deps = [ |
| 72 "//base", | 74 "//base", |
| 73 ] | 75 ] |
| 74 | 76 |
| 75 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] | 77 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] |
| 76 } | 78 } |
| OLD | NEW |