| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 | 7 |
| 8 group("common") { | 8 group("common") { |
| 9 if (is_component_build) { | 9 if (is_component_build) { |
| 10 public_deps = [ | 10 public_deps = [ |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 source_set("command_buffer_traits_sources") { | 32 source_set("command_buffer_traits_sources") { |
| 33 # External code should depend on this via | 33 # External code should depend on this via |
| 34 # //gpu/ipc/common:command_buffer_traits above rather than depending on this | 34 # //gpu/ipc/common:command_buffer_traits above rather than depending on this |
| 35 # directly or the component build will break. | 35 # directly or the component build will break. |
| 36 visibility = [ "//gpu/*" ] | 36 visibility = [ "//gpu/*" ] |
| 37 | 37 |
| 38 sources = [ | 38 sources = [ |
| 39 "gpu_command_buffer_traits.cc", | 39 "gpu_command_buffer_traits.cc", |
| 40 "gpu_command_buffer_traits.h", | 40 "gpu_command_buffer_traits.h", |
| 41 "gpu_command_buffer_traits_multi.h", | 41 "gpu_command_buffer_traits_multi.h", |
| 42 "id_type_traits.h", | |
| 43 ] | 42 ] |
| 44 | 43 |
| 45 configs += [ | 44 configs += [ |
| 46 "//gpu:gpu_implementation", | 45 "//gpu:gpu_implementation", |
| 47 "//third_party/khronos:khronos_headers", | 46 "//third_party/khronos:khronos_headers", |
| 48 ] | 47 ] |
| 49 | 48 |
| 50 public_deps = [ | 49 public_deps = [ |
| 51 "//gpu/command_buffer/common:common_sources", | 50 "//gpu/command_buffer/common:common_sources", |
| 52 "//ipc", | 51 "//ipc", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 | 117 |
| 119 mojom("interfaces") { | 118 mojom("interfaces") { |
| 120 sources = [ | 119 sources = [ |
| 121 "capabilities.mojom", | 120 "capabilities.mojom", |
| 122 "command_buffer.mojom", | 121 "command_buffer.mojom", |
| 123 "mailbox.mojom", | 122 "mailbox.mojom", |
| 124 "mailbox_holder.mojom", | 123 "mailbox_holder.mojom", |
| 125 "sync_token.mojom", | 124 "sync_token.mojom", |
| 126 ] | 125 ] |
| 127 } | 126 } |
| OLD | NEW |