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", |
| 44 "id_type.h", |
43 "mailbox.cc", | 45 "mailbox.cc", |
44 "mailbox.h", | 46 "mailbox.h", |
45 "mailbox_holder.cc", | 47 "mailbox_holder.cc", |
46 "mailbox_holder.h", | 48 "mailbox_holder.h", |
| 49 "sync_token.cc", |
47 "sync_token.h", | 50 "sync_token.h", |
48 "thread_local.h", | 51 "thread_local.h", |
49 "time.h", | 52 "time.h", |
50 "value_state.cc", | 53 "value_state.cc", |
51 "value_state.h", | 54 "value_state.h", |
52 ] | 55 ] |
53 | 56 |
54 configs += [ "//gpu:gpu_implementation" ] | 57 configs += [ "//gpu:gpu_implementation" ] |
55 | 58 |
56 deps = [ | 59 deps = [ |
(...skipping 10 matching lines...) Expand all Loading... |
67 ] | 70 ] |
68 | 71 |
69 defines = [ "GLES2_UTILS_IMPLEMENTATION" ] | 72 defines = [ "GLES2_UTILS_IMPLEMENTATION" ] |
70 | 73 |
71 deps = [ | 74 deps = [ |
72 "//base", | 75 "//base", |
73 ] | 76 ] |
74 | 77 |
75 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] | 78 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] |
76 } | 79 } |
OLD | NEW |