| 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 12 matching lines...) Expand all Loading... |
| 23 "//skia", | 23 "//skia", |
| 24 ] | 24 ] |
| 25 | 25 |
| 26 deps = [ | 26 deps = [ |
| 27 "//base", | 27 "//base", |
| 28 "//gpu/ipc/common", | 28 "//gpu/ipc/common", |
| 29 "//ipc", | 29 "//ipc", |
| 30 "//ui/events/ipc", | 30 "//ui/events/ipc", |
| 31 "//ui/gfx", | 31 "//ui/gfx", |
| 32 "//ui/gfx/ipc", | 32 "//ui/gfx/ipc", |
| 33 "//ui/gfx/ipc/color", |
| 33 "//ui/gfx/ipc/geometry", | 34 "//ui/gfx/ipc/geometry", |
| 34 "//ui/gfx/ipc/skia", | 35 "//ui/gfx/ipc/skia", |
| 35 ] | 36 ] |
| 36 } | 37 } |
| 37 | 38 |
| 38 mojom("interfaces") { | 39 mojom("interfaces") { |
| 39 sources = [ | 40 sources = [ |
| 40 "begin_frame_args.mojom", | 41 "begin_frame_args.mojom", |
| 41 "compositor_frame.mojom", | 42 "compositor_frame.mojom", |
| 42 "compositor_frame_metadata.mojom", | 43 "compositor_frame_metadata.mojom", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 73 testonly = true | 74 testonly = true |
| 74 sources = [ | 75 sources = [ |
| 75 "traits_test_service.mojom", | 76 "traits_test_service.mojom", |
| 76 ] | 77 ] |
| 77 | 78 |
| 78 public_deps = [ | 79 public_deps = [ |
| 79 ":interfaces", | 80 ":interfaces", |
| 80 ":interfaces_surfaceid_only", | 81 ":interfaces_surfaceid_only", |
| 81 ] | 82 ] |
| 82 } | 83 } |
| OLD | NEW |