| 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", |
| 56 "//ui/gfx/ipc", | 57 "//ui/gfx/ipc", |
| 57 "//ui/gfx/ipc/geometry", | 58 "//ui/gfx/ipc/geometry", |
| 58 ] | 59 ] |
| 59 } | 60 } |
| 60 | 61 |
| 61 source_set("ipc_common_sources") { | 62 source_set("ipc_common_sources") { |
| 62 # External code should depend on this via //gpu/ipc/common above rather than | 63 # External code should depend on this via //gpu/ipc/common above rather than |
| 63 # depending on this directly or the component build will break. | 64 # depending on this directly or the component build will break. |
| 64 visibility = [ "//gpu/*" ] | 65 visibility = [ "//gpu/*" ] |
| 65 | 66 |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 mojom("test_interfaces") { | 130 mojom("test_interfaces") { |
| 130 testonly = true | 131 testonly = true |
| 131 sources = [ | 132 sources = [ |
| 132 "traits_test_service.mojom", | 133 "traits_test_service.mojom", |
| 133 ] | 134 ] |
| 134 | 135 |
| 135 public_deps = [ | 136 public_deps = [ |
| 136 ":interfaces", | 137 ":interfaces", |
| 137 ] | 138 ] |
| 138 } | 139 } |
| OLD | NEW |