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