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

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

Issue 2783973002: Moving LatencyInfo into a separate component. (Closed)
Patch Set: Rebase again Created 3 years, 8 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
« no previous file with comments | « cc/DEPS ('k') | cc/ipc/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//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 10 matching lines...) Expand all
21 public_deps = [ 21 public_deps = [
22 "//cc", 22 "//cc",
23 "//cc/surfaces", 23 "//cc/surfaces",
24 "//skia", 24 "//skia",
25 ] 25 ]
26 26
27 deps = [ 27 deps = [
28 "//base", 28 "//base",
29 "//gpu/ipc/common", 29 "//gpu/ipc/common",
30 "//ipc", 30 "//ipc",
31 "//ui/events/ipc",
32 "//ui/gfx", 31 "//ui/gfx",
33 "//ui/gfx/ipc", 32 "//ui/gfx/ipc",
34 "//ui/gfx/ipc/color", 33 "//ui/gfx/ipc/color",
35 "//ui/gfx/ipc/geometry", 34 "//ui/gfx/ipc/geometry",
36 "//ui/gfx/ipc/skia", 35 "//ui/gfx/ipc/skia",
36 "//ui/latency/ipc",
37 ] 37 ]
38 } 38 }
39 39
40 mojom("interfaces") { 40 mojom("interfaces") {
41 sources = [ 41 sources = [
42 "begin_frame_args.mojom", 42 "begin_frame_args.mojom",
43 "compositor_frame.mojom", 43 "compositor_frame.mojom",
44 "compositor_frame_metadata.mojom", 44 "compositor_frame_metadata.mojom",
45 "copy_output_request.mojom", 45 "copy_output_request.mojom",
46 "copy_output_result.mojom", 46 "copy_output_result.mojom",
(...skipping 14 matching lines...) Expand all
61 "surface_sequence.mojom", 61 "surface_sequence.mojom",
62 "texture_mailbox.mojom", 62 "texture_mailbox.mojom",
63 "texture_mailbox_releaser.mojom", 63 "texture_mailbox_releaser.mojom",
64 "transferable_resource.mojom", 64 "transferable_resource.mojom",
65 ] 65 ]
66 66
67 public_deps = [ 67 public_deps = [
68 "//gpu/ipc/common:interfaces", 68 "//gpu/ipc/common:interfaces",
69 "//mojo/common:common_custom_types", 69 "//mojo/common:common_custom_types",
70 "//skia/public/interfaces", 70 "//skia/public/interfaces",
71 "//ui/events/mojo:interfaces",
72 "//ui/gfx/geometry/mojo", 71 "//ui/gfx/geometry/mojo",
73 "//ui/gfx/mojo", 72 "//ui/gfx/mojo",
73 "//ui/latency/mojo:interfaces",
74 ] 74 ]
75 } 75 }
76 76
77 mojom("test_interfaces") { 77 mojom("test_interfaces") {
78 testonly = true 78 testonly = true
79 sources = [ 79 sources = [
80 "traits_test_service.mojom", 80 "traits_test_service.mojom",
81 ] 81 ]
82 82
83 public_deps = [ 83 public_deps = [
84 ":interfaces", 84 ":interfaces",
85 ] 85 ]
86 } 86 }
OLDNEW
« no previous file with comments | « cc/DEPS ('k') | cc/ipc/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698