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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 "//third_party/khronos:khronos_headers", | 46 "//third_party/khronos:khronos_headers", |
47 ] | 47 ] |
48 | 48 |
49 public_deps = [ | 49 public_deps = [ |
50 "//gpu/command_buffer/common:common_sources", | 50 "//gpu/command_buffer/common:common_sources", |
51 "//ipc", | 51 "//ipc", |
52 ] | 52 ] |
53 | 53 |
54 deps = [ | 54 deps = [ |
55 "//base", | 55 "//base", |
56 "//gpu/command_buffer/common:gles2_utils", | |
57 "//ui/gfx/ipc", | 56 "//ui/gfx/ipc", |
58 "//ui/gfx/ipc/geometry", | 57 "//ui/gfx/ipc/geometry", |
59 ] | 58 ] |
60 } | 59 } |
61 | 60 |
62 source_set("ipc_common_sources") { | 61 source_set("ipc_common_sources") { |
63 # 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 |
64 # depending on this directly or the component build will break. | 63 # depending on this directly or the component build will break. |
65 visibility = [ "//gpu/*" ] | 64 visibility = [ "//gpu/*" ] |
66 | 65 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 mojom("test_interfaces") { | 129 mojom("test_interfaces") { |
131 testonly = true | 130 testonly = true |
132 sources = [ | 131 sources = [ |
133 "traits_test_service.mojom", | 132 "traits_test_service.mojom", |
134 ] | 133 ] |
135 | 134 |
136 public_deps = [ | 135 public_deps = [ |
137 ":interfaces", | 136 ":interfaces", |
138 ] | 137 ] |
139 } | 138 } |
OLD | NEW |