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 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
10 | 10 |
(...skipping 14 matching lines...) Expand all Loading... |
25 | 25 |
26 sources = [ | 26 sources = [ |
27 "bitfield_helpers.h", | 27 "bitfield_helpers.h", |
28 "buffer.cc", | 28 "buffer.cc", |
29 "buffer.h", | 29 "buffer.h", |
30 "capabilities.cc", | 30 "capabilities.cc", |
31 "capabilities.h", | 31 "capabilities.h", |
32 "cmd_buffer_common.cc", | 32 "cmd_buffer_common.cc", |
33 "cmd_buffer_common.h", | 33 "cmd_buffer_common.h", |
34 "command_buffer.h", | 34 "command_buffer.h", |
| 35 "command_buffer_id.h", |
35 "constants.h", | 36 "constants.h", |
36 "debug_marker_manager.cc", | 37 "debug_marker_manager.cc", |
37 "debug_marker_manager.h", | 38 "debug_marker_manager.h", |
38 "gles2_cmd_format.cc", | 39 "gles2_cmd_format.cc", |
39 "gles2_cmd_format.h", | 40 "gles2_cmd_format.h", |
40 "gles2_cmd_format_autogen.h", | 41 "gles2_cmd_format_autogen.h", |
41 "gles2_cmd_ids.h", | 42 "gles2_cmd_ids.h", |
42 "gles2_cmd_ids_autogen.h", | 43 "gles2_cmd_ids_autogen.h", |
43 "id_allocator.cc", | 44 "id_allocator.cc", |
44 "id_allocator.h", | 45 "id_allocator.h", |
| 46 "id_type.h", |
45 "mailbox.cc", | 47 "mailbox.cc", |
46 "mailbox.h", | 48 "mailbox.h", |
47 "mailbox_holder.cc", | 49 "mailbox_holder.cc", |
48 "mailbox_holder.h", | 50 "mailbox_holder.h", |
| 51 "sync_token.cc", |
49 "sync_token.h", | 52 "sync_token.h", |
50 "thread_local.h", | 53 "thread_local.h", |
51 "time.h", | 54 "time.h", |
52 "value_state.cc", | 55 "value_state.cc", |
53 "value_state.h", | 56 "value_state.h", |
54 ] | 57 ] |
55 | 58 |
56 configs += [ "//gpu:gpu_implementation" ] | 59 configs += [ "//gpu:gpu_implementation" ] |
57 | 60 |
58 deps = [ | 61 deps = [ |
(...skipping 24 matching lines...) Expand all Loading... |
83 "command_buffer.mojom", | 86 "command_buffer.mojom", |
84 "mailbox.mojom", | 87 "mailbox.mojom", |
85 "mailbox_holder.mojom", | 88 "mailbox_holder.mojom", |
86 "sync_token.mojom", | 89 "sync_token.mojom", |
87 "value_state.mojom", | 90 "value_state.mojom", |
88 ] | 91 ] |
89 | 92 |
90 typemaps = [ "mojo.typemap" ] | 93 typemaps = [ "mojo.typemap" ] |
91 typemap_deps = [ "//gpu/ipc" ] | 94 typemap_deps = [ "//gpu/ipc" ] |
92 } | 95 } |
OLD | NEW |