| 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("//cc/cc.gni") | 6 import("//cc/cc.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 cc_component("ipc") { | 9 cc_component("ipc") { |
| 10 output_name = "cc_ipc" | 10 output_name = "cc_ipc" |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "quads.mojom", | 53 "quads.mojom", |
| 54 "render_pass.mojom", | 54 "render_pass.mojom", |
| 55 "returned_resource.mojom", | 55 "returned_resource.mojom", |
| 56 "selection.mojom", | 56 "selection.mojom", |
| 57 "shared_quad_state.mojom", | 57 "shared_quad_state.mojom", |
| 58 "surface_id.mojom", | 58 "surface_id.mojom", |
| 59 "surface_info.mojom", | 59 "surface_info.mojom", |
| 60 "surface_reference.mojom", | 60 "surface_reference.mojom", |
| 61 "surface_sequence.mojom", | 61 "surface_sequence.mojom", |
| 62 "texture_mailbox.mojom", | 62 "texture_mailbox.mojom", |
| 63 "texture_mailbox_releaser.mojom", |
| 63 "transferable_resource.mojom", | 64 "transferable_resource.mojom", |
| 64 ] | 65 ] |
| 65 | 66 |
| 66 public_deps = [ | 67 public_deps = [ |
| 67 "//gpu/ipc/common:interfaces", | 68 "//gpu/ipc/common:interfaces", |
| 68 "//mojo/common:common_custom_types", | 69 "//mojo/common:common_custom_types", |
| 69 "//skia/public/interfaces", | 70 "//skia/public/interfaces", |
| 70 "//ui/events/mojo:interfaces", | 71 "//ui/events/mojo:interfaces", |
| 71 "//ui/gfx/geometry/mojo", | 72 "//ui/gfx/geometry/mojo", |
| 72 "//ui/gfx/mojo", | 73 "//ui/gfx/mojo", |
| 73 ] | 74 ] |
| 74 } | 75 } |
| 75 | 76 |
| 76 mojom("test_interfaces") { | 77 mojom("test_interfaces") { |
| 77 testonly = true | 78 testonly = true |
| 78 sources = [ | 79 sources = [ |
| 79 "traits_test_service.mojom", | 80 "traits_test_service.mojom", |
| 80 ] | 81 ] |
| 81 | 82 |
| 82 public_deps = [ | 83 public_deps = [ |
| 83 ":interfaces", | 84 ":interfaces", |
| 84 ] | 85 ] |
| 85 } | 86 } |
| OLD | NEW |