| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 "//ui/gfx/ipc/geometry", | 57 "//ui/gfx/ipc/geometry", |
| 58 ] | 58 ] |
| 59 } | 59 } |
| 60 | 60 |
| 61 source_set("ipc_common_sources") { | 61 source_set("ipc_common_sources") { |
| 62 # External code should depend on this via //gpu/ipc/common above rather than | 62 # External code should depend on this via //gpu/ipc/common above rather than |
| 63 # depending on this directly or the component build will break. | 63 # depending on this directly or the component build will break. |
| 64 visibility = [ "//gpu/*" ] | 64 visibility = [ "//gpu/*" ] |
| 65 | 65 |
| 66 sources = [ | 66 sources = [ |
| 67 "dialog_surface_lookup.cc", |
| 68 "dialog_surface_lookup.h", |
| 67 "gpu_memory_buffer_support.cc", | 69 "gpu_memory_buffer_support.cc", |
| 68 "gpu_memory_buffer_support.h", | 70 "gpu_memory_buffer_support.h", |
| 69 "gpu_memory_uma_stats.h", | 71 "gpu_memory_uma_stats.h", |
| 70 "gpu_message_generator.cc", | 72 "gpu_message_generator.cc", |
| 71 "gpu_message_generator.h", | 73 "gpu_message_generator.h", |
| 72 "gpu_messages.h", | 74 "gpu_messages.h", |
| 73 "gpu_param_traits.cc", | 75 "gpu_param_traits.cc", |
| 74 "gpu_param_traits.h", | 76 "gpu_param_traits.h", |
| 75 "gpu_param_traits_macros.h", | 77 "gpu_param_traits_macros.h", |
| 76 "gpu_stream_constants.h", | 78 "gpu_stream_constants.h", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 mojom("test_interfaces") { | 131 mojom("test_interfaces") { |
| 130 testonly = true | 132 testonly = true |
| 131 sources = [ | 133 sources = [ |
| 132 "traits_test_service.mojom", | 134 "traits_test_service.mojom", |
| 133 ] | 135 ] |
| 134 | 136 |
| 135 public_deps = [ | 137 public_deps = [ |
| 136 ":interfaces", | 138 ":interfaces", |
| 137 ] | 139 ] |
| 138 } | 140 } |
| OLD | NEW |