| 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 23 matching lines...) Expand all Loading... |
| 34 "command_buffer.h", | 34 "command_buffer.h", |
| 35 "command_buffer_id.h", | 35 "command_buffer_id.h", |
| 36 "constants.h", | 36 "constants.h", |
| 37 "debug_marker_manager.cc", | 37 "debug_marker_manager.cc", |
| 38 "debug_marker_manager.h", | 38 "debug_marker_manager.h", |
| 39 "gles2_cmd_format.cc", | 39 "gles2_cmd_format.cc", |
| 40 "gles2_cmd_format.h", | 40 "gles2_cmd_format.h", |
| 41 "gles2_cmd_format_autogen.h", | 41 "gles2_cmd_format_autogen.h", |
| 42 "gles2_cmd_ids.h", | 42 "gles2_cmd_ids.h", |
| 43 "gles2_cmd_ids_autogen.h", | 43 "gles2_cmd_ids_autogen.h", |
| 44 "gpu_memory_buffer_support.cc", |
| 45 "gpu_memory_buffer_support.h", |
| 44 "id_allocator.cc", | 46 "id_allocator.cc", |
| 45 "id_allocator.h", | 47 "id_allocator.h", |
| 46 "id_type.h", | 48 "id_type.h", |
| 47 "mailbox.cc", | 49 "mailbox.cc", |
| 48 "mailbox.h", | 50 "mailbox.h", |
| 49 "mailbox_holder.cc", | 51 "mailbox_holder.cc", |
| 50 "mailbox_holder.h", | 52 "mailbox_holder.h", |
| 51 "sync_token.cc", | 53 "sync_token.cc", |
| 52 "sync_token.h", | 54 "sync_token.h", |
| 53 "thread_local.h", | 55 "thread_local.h", |
| 54 "time.h", | 56 "time.h", |
| 55 "value_state.cc", | 57 "value_state.cc", |
| 56 "value_state.h", | 58 "value_state.h", |
| 57 ] | 59 ] |
| 58 | 60 |
| 59 configs += [ "//gpu:gpu_implementation" ] | 61 configs += [ "//gpu:gpu_implementation" ] |
| 60 | 62 |
| 63 public_deps = [ |
| 64 "//ui/gfx:memory_buffer", |
| 65 "//ui/gfx/geometry", |
| 66 ] |
| 67 |
| 61 deps = [ | 68 deps = [ |
| 62 ":gles2_utils", | 69 ":gles2_utils", |
| 63 "//base", | 70 "//base", |
| 64 ] | 71 ] |
| 65 } | 72 } |
| 66 | 73 |
| 67 component("gles2_utils") { | 74 component("gles2_utils") { |
| 68 sources = [ | 75 sources = [ |
| 69 "gles2_cmd_utils.cc", | 76 "gles2_cmd_utils.cc", |
| 70 "gles2_cmd_utils.h", | 77 "gles2_cmd_utils.h", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 86 "command_buffer.mojom", | 93 "command_buffer.mojom", |
| 87 "mailbox.mojom", | 94 "mailbox.mojom", |
| 88 "mailbox_holder.mojom", | 95 "mailbox_holder.mojom", |
| 89 "sync_token.mojom", | 96 "sync_token.mojom", |
| 90 "value_state.mojom", | 97 "value_state.mojom", |
| 91 ] | 98 ] |
| 92 | 99 |
| 93 typemaps = [ "mojo.typemap" ] | 100 typemaps = [ "mojo.typemap" ] |
| 94 typemap_deps = [ "//gpu/ipc/common:command_buffer_traits" ] | 101 typemap_deps = [ "//gpu/ipc/common:command_buffer_traits" ] |
| 95 } | 102 } |
| OLD | NEW |