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