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 20 matching lines...) Expand all Loading... |
31 "//ui/gfx", | 31 "//ui/gfx", |
32 "//ui/gfx/ipc", | 32 "//ui/gfx/ipc", |
33 "//ui/gfx/ipc/geometry", | 33 "//ui/gfx/ipc/geometry", |
34 "//ui/gfx/ipc/skia", | 34 "//ui/gfx/ipc/skia", |
35 ] | 35 ] |
36 } | 36 } |
37 | 37 |
38 mojom("interfaces") { | 38 mojom("interfaces") { |
39 sources = [ | 39 sources = [ |
40 "begin_frame_args.mojom", | 40 "begin_frame_args.mojom", |
| 41 "compositor_frame_metadata.mojom", |
41 "render_pass_id.mojom", | 42 "render_pass_id.mojom", |
42 "returned_resource.mojom", | 43 "returned_resource.mojom", |
43 "selection.mojom", | 44 "selection.mojom", |
44 "shared_quad_state.mojom", | 45 "shared_quad_state.mojom", |
45 "surface_id.mojom", | 46 "surface_id.mojom", |
46 "transferable_resource.mojom", | 47 "transferable_resource.mojom", |
47 ] | 48 ] |
48 | 49 |
49 public_deps = [ | 50 public_deps = [ |
50 "//gpu/ipc/common:interfaces", | 51 "//gpu/ipc/common:interfaces", |
51 "//mojo/common:common_custom_types", | 52 "//mojo/common:common_custom_types", |
| 53 "//ui/events/mojo:interfaces", |
52 "//ui/gfx/geometry/mojo", | 54 "//ui/gfx/geometry/mojo", |
53 "//ui/gfx/mojo", | 55 "//ui/gfx/mojo", |
54 ] | 56 ] |
55 } | 57 } |
56 | 58 |
57 mojom("test_interfaces") { | 59 mojom("test_interfaces") { |
58 testonly = true | 60 testonly = true |
59 sources = [ | 61 sources = [ |
60 "traits_test_service.mojom", | 62 "traits_test_service.mojom", |
61 ] | 63 ] |
62 | 64 |
63 public_deps = [ | 65 public_deps = [ |
64 ":interfaces", | 66 ":interfaces", |
65 ] | 67 ] |
66 } | 68 } |
OLD | NEW |