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.mojom", |
41 "compositor_frame_metadata.mojom", | 42 "compositor_frame_metadata.mojom", |
42 "filter_operation.mojom", | 43 "filter_operation.mojom", |
43 "filter_operations.mojom", | 44 "filter_operations.mojom", |
44 "quads.mojom", | 45 "quads.mojom", |
| 46 "render_pass.mojom", |
45 "render_pass_id.mojom", | 47 "render_pass_id.mojom", |
46 "returned_resource.mojom", | 48 "returned_resource.mojom", |
47 "selection.mojom", | 49 "selection.mojom", |
48 "shared_quad_state.mojom", | 50 "shared_quad_state.mojom", |
49 "transferable_resource.mojom", | 51 "transferable_resource.mojom", |
50 ] | 52 ] |
51 | 53 |
52 public_deps = [ | 54 public_deps = [ |
53 ":interfaces_surfaceid_only", | 55 ":interfaces_surfaceid_only", |
54 "//gpu/ipc/common:interfaces", | 56 "//gpu/ipc/common:interfaces", |
(...skipping 16 matching lines...) Expand all Loading... |
71 testonly = true | 73 testonly = true |
72 sources = [ | 74 sources = [ |
73 "traits_test_service.mojom", | 75 "traits_test_service.mojom", |
74 ] | 76 ] |
75 | 77 |
76 public_deps = [ | 78 public_deps = [ |
77 ":interfaces", | 79 ":interfaces", |
78 ":interfaces_surfaceid_only", | 80 ":interfaces_surfaceid_only", |
79 ] | 81 ] |
80 } | 82 } |
OLD | NEW |