| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "id_allocator.h", | 47 "id_allocator.h", |
| 48 "id_type.h", | 48 "id_type.h", |
| 49 "mailbox.cc", | 49 "mailbox.cc", |
| 50 "mailbox.h", | 50 "mailbox.h", |
| 51 "mailbox_holder.cc", | 51 "mailbox_holder.cc", |
| 52 "mailbox_holder.h", | 52 "mailbox_holder.h", |
| 53 "sync_token.cc", | 53 "sync_token.cc", |
| 54 "sync_token.h", | 54 "sync_token.h", |
| 55 "thread_local.h", | 55 "thread_local.h", |
| 56 "time.h", | 56 "time.h", |
| 57 "value_state.cc", | |
| 58 "value_state.h", | |
| 59 ] | 57 ] |
| 60 | 58 |
| 61 configs += [ "//gpu:gpu_implementation" ] | 59 configs += [ "//gpu:gpu_implementation" ] |
| 62 | 60 |
| 63 public_deps = [ | 61 public_deps = [ |
| 64 "//ui/gfx:memory_buffer", | 62 "//ui/gfx:memory_buffer", |
| 65 "//ui/gfx/geometry", | 63 "//ui/gfx/geometry", |
| 66 ] | 64 ] |
| 67 | 65 |
| 68 deps = [ | 66 deps = [ |
| (...skipping 18 matching lines...) Expand all Loading... |
| 87 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] | 85 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] |
| 88 } | 86 } |
| 89 | 87 |
| 90 mojom("interfaces") { | 88 mojom("interfaces") { |
| 91 sources = [ | 89 sources = [ |
| 92 "capabilities.mojom", | 90 "capabilities.mojom", |
| 93 "command_buffer.mojom", | 91 "command_buffer.mojom", |
| 94 "mailbox.mojom", | 92 "mailbox.mojom", |
| 95 "mailbox_holder.mojom", | 93 "mailbox_holder.mojom", |
| 96 "sync_token.mojom", | 94 "sync_token.mojom", |
| 97 "value_state.mojom", | |
| 98 ] | 95 ] |
| 99 } | 96 } |
| OLD | NEW |