| 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 23 matching lines...) Expand all Loading... |
| 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 "compositor_frame_metadata.mojom", |
| 42 "filter_operation.mojom", | 42 "filter_operation.mojom", |
| 43 "filter_operations.mojom", | 43 "filter_operations.mojom", |
| 44 "quads.mojom", |
| 44 "render_pass_id.mojom", | 45 "render_pass_id.mojom", |
| 45 "returned_resource.mojom", | 46 "returned_resource.mojom", |
| 46 "selection.mojom", | 47 "selection.mojom", |
| 47 "shared_quad_state.mojom", | 48 "shared_quad_state.mojom", |
| 48 "surface_id.mojom", | 49 "surface_id.mojom", |
| 49 "surface_sequence.mojom", | 50 "surface_sequence.mojom", |
| 50 "transferable_resource.mojom", | 51 "transferable_resource.mojom", |
| 51 ] | 52 ] |
| 52 | 53 |
| 53 public_deps = [ | 54 public_deps = [ |
| 54 "//gpu/ipc/common:interfaces", | 55 "//gpu/ipc/common:interfaces", |
| 55 "//mojo/common:common_custom_types", | 56 "//mojo/common:common_custom_types", |
| 56 "//skia/public/interfaces", | 57 "//skia/public/interfaces", |
| 57 "//ui/events/mojo:interfaces", | 58 "//ui/events/mojo:interfaces", |
| 58 "//ui/gfx/geometry/mojo", | 59 "//ui/gfx/geometry/mojo", |
| 59 "//ui/gfx/mojo", | 60 "//ui/gfx/mojo", |
| 60 ] | 61 ] |
| 61 } | 62 } |
| 62 | 63 |
| 63 mojom("test_interfaces") { | 64 mojom("test_interfaces") { |
| 64 testonly = true | 65 testonly = true |
| 65 sources = [ | 66 sources = [ |
| 66 "traits_test_service.mojom", | 67 "traits_test_service.mojom", |
| 67 ] | 68 ] |
| 68 | 69 |
| 69 public_deps = [ | 70 public_deps = [ |
| 70 ":interfaces", | 71 ":interfaces", |
| 71 ] | 72 ] |
| 72 } | 73 } |
| OLD | NEW |