| 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 component("ipc") { | 8 component("ipc") { |
| 9 output_name = "cc_ipc" | 9 output_name = "cc_ipc" |
| 10 | 10 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 "render_pass.mojom", | 50 "render_pass.mojom", |
| 51 "render_pass_id.mojom", | 51 "render_pass_id.mojom", |
| 52 "returned_resource.mojom", | 52 "returned_resource.mojom", |
| 53 "selection.mojom", | 53 "selection.mojom", |
| 54 "shared_quad_state.mojom", | 54 "shared_quad_state.mojom", |
| 55 "surface_id.mojom", | 55 "surface_id.mojom", |
| 56 "surface_sequence.mojom", | 56 "surface_sequence.mojom", |
| 57 "transferable_resource.mojom", | 57 "transferable_resource.mojom", |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 deps = [ | 60 public_deps = [ |
| 61 "//gpu/ipc/common:interfaces", | 61 "//gpu/ipc/common:interfaces", |
| 62 "//mojo/common:common_custom_types", | 62 "//mojo/common:common_custom_types", |
| 63 "//skia/public/interfaces", | 63 "//skia/public/interfaces", |
| 64 "//ui/events/mojo:interfaces", | 64 "//ui/events/mojo:interfaces", |
| 65 "//ui/gfx/geometry/mojo", | 65 "//ui/gfx/geometry/mojo", |
| 66 "//ui/gfx/mojo", | 66 "//ui/gfx/mojo", |
| 67 ] | 67 ] |
| 68 } | 68 } |
| 69 | 69 |
| 70 # Interfaces between two privileged services. |
| 71 mojom("internal_interfaces") { |
| 72 sources = [ |
| 73 "display_compositor.mojom", |
| 74 ] |
| 75 |
| 76 public_deps = [ |
| 77 ":interfaces", |
| 78 "//ui/gfx/geometry/mojo", |
| 79 ] |
| 80 } |
| 81 |
| 70 mojom("test_interfaces") { | 82 mojom("test_interfaces") { |
| 71 testonly = true | 83 testonly = true |
| 72 sources = [ | 84 sources = [ |
| 73 "traits_test_service.mojom", | 85 "traits_test_service.mojom", |
| 74 ] | 86 ] |
| 75 | 87 |
| 76 public_deps = [ | 88 public_deps = [ |
| 77 ":interfaces", | 89 ":interfaces", |
| 78 ] | 90 ] |
| 79 } | 91 } |
| (...skipping 29 matching lines...) Expand all Loading... |
| 109 "//mojo/common:struct_traits", | 121 "//mojo/common:struct_traits", |
| 110 "//skia/public/interfaces:struct_traits", | 122 "//skia/public/interfaces:struct_traits", |
| 111 "//ui/events:events_base", | 123 "//ui/events:events_base", |
| 112 "//ui/events/mojo:struct_traits", | 124 "//ui/events/mojo:struct_traits", |
| 113 "//ui/gfx", | 125 "//ui/gfx", |
| 114 "//ui/gfx:selection_bound", | 126 "//ui/gfx:selection_bound", |
| 115 "//ui/gfx/geometry/mojo:struct_traits", | 127 "//ui/gfx/geometry/mojo:struct_traits", |
| 116 "//ui/gfx/mojo:struct_traits", | 128 "//ui/gfx/mojo:struct_traits", |
| 117 ] | 129 ] |
| 118 } | 130 } |
| OLD | NEW |