Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(273)

Side by Side Diff: cc/ipc/BUILD.gn

Issue 2036663003: Establish mojo service between Canvas (blink) and SurfaceManager (browser) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: OWNERS change on offscreencanvas folder Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 28 matching lines...) Expand all
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 "quads.mojom",
45 "render_pass_id.mojom", 45 "render_pass_id.mojom",
46 "returned_resource.mojom", 46 "returned_resource.mojom",
47 "selection.mojom", 47 "selection.mojom",
48 "shared_quad_state.mojom", 48 "shared_quad_state.mojom",
49 "surface_id.mojom",
50 "surface_sequence.mojom",
51 "transferable_resource.mojom", 49 "transferable_resource.mojom",
52 ] 50 ]
53 51
54 public_deps = [ 52 public_deps = [
53 ":interfaces_surfaceid_only",
55 "//gpu/ipc/common:interfaces", 54 "//gpu/ipc/common:interfaces",
56 "//mojo/common:common_custom_types", 55 "//mojo/common:common_custom_types",
57 "//skia/public/interfaces", 56 "//skia/public/interfaces",
58 "//ui/events/mojo:interfaces", 57 "//ui/events/mojo:interfaces",
59 "//ui/gfx/geometry/mojo", 58 "//ui/gfx/geometry/mojo",
60 "//ui/gfx/mojo", 59 "//ui/gfx/mojo",
61 ] 60 ]
62 } 61 }
63 62
63 mojom("interfaces_surfaceid_only") {
64 sources = [
65 "surface_id.mojom",
66 "surface_sequence.mojom",
67 ]
68 }
69
64 mojom("test_interfaces") { 70 mojom("test_interfaces") {
65 testonly = true 71 testonly = true
66 sources = [ 72 sources = [
67 "traits_test_service.mojom", 73 "traits_test_service.mojom",
68 ] 74 ]
69 75
70 public_deps = [ 76 public_deps = [
71 ":interfaces", 77 ":interfaces",
78 ":interfaces_surfaceid_only",
72 ] 79 ]
73 } 80 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698