| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 } | 68 } |
| 69 | 69 |
| 70 # Interfaces between two privileged services. | 70 # Interfaces between two privileged services. |
| 71 mojom("internal_interfaces") { | 71 mojom("internal_interfaces") { |
| 72 sources = [ | 72 sources = [ |
| 73 "display_compositor.mojom", | 73 "display_compositor.mojom", |
| 74 ] | 74 ] |
| 75 | 75 |
| 76 public_deps = [ | 76 public_deps = [ |
| 77 ":interfaces", | 77 ":interfaces", |
| 78 "//gpu/ipc/common:interfaces", |
| 78 "//ui/gfx/geometry/mojo", | 79 "//ui/gfx/geometry/mojo", |
| 79 ] | 80 ] |
| 80 } | 81 } |
| 81 | 82 |
| 82 mojom("test_interfaces") { | 83 mojom("test_interfaces") { |
| 83 testonly = true | 84 testonly = true |
| 84 sources = [ | 85 sources = [ |
| 85 "traits_test_service.mojom", | 86 "traits_test_service.mojom", |
| 86 ] | 87 ] |
| 87 | 88 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 "//mojo/common:struct_traits", | 123 "//mojo/common:struct_traits", |
| 123 "//skia/public/interfaces:struct_traits", | 124 "//skia/public/interfaces:struct_traits", |
| 124 "//ui/events:events_base", | 125 "//ui/events:events_base", |
| 125 "//ui/events/mojo:struct_traits", | 126 "//ui/events/mojo:struct_traits", |
| 126 "//ui/gfx", | 127 "//ui/gfx", |
| 127 "//ui/gfx:selection_bound", | 128 "//ui/gfx:selection_bound", |
| 128 "//ui/gfx/geometry/mojo:struct_traits", | 129 "//ui/gfx/geometry/mojo:struct_traits", |
| 129 "//ui/gfx/mojo:struct_traits", | 130 "//ui/gfx/mojo:struct_traits", |
| 130 ] | 131 ] |
| 131 } | 132 } |
| OLD | NEW |