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

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

Issue 2032643002: Implement cc::SharedQuadState StructTraits (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed StructTraits + added unittest 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
« no previous file with comments | « no previous file | cc/ipc/shared_quad_state.mojom » ('j') | cc/ipc/shared_quad_state.mojom » ('J')
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("//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 22 matching lines...) Expand all
33 "//ui/gfx/ipc/geometry", 33 "//ui/gfx/ipc/geometry",
34 "//ui/gfx/ipc/skia", 34 "//ui/gfx/ipc/skia",
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 "surface_id.mojom", 44 "surface_id.mojom",
44 "transferable_resource.mojom", 45 "transferable_resource.mojom",
45 ] 46 ]
46 47
47 public_deps = [ 48 public_deps = [
48 "//gpu/ipc/common:interfaces", 49 "//gpu/ipc/common:interfaces",
49 "//mojo/common:common_custom_types", 50 "//mojo/common:common_custom_types",
50 "//ui/gfx/geometry/mojo", 51 "//ui/gfx/geometry/mojo",
52 "//ui/gfx/mojo",
51 ] 53 ]
52 } 54 }
53 55
54 mojom("test_interfaces") { 56 mojom("test_interfaces") {
55 testonly = true 57 testonly = true
56 sources = [ 58 sources = [
57 "traits_test_service.mojom", 59 "traits_test_service.mojom",
58 ] 60 ]
59 61
60 public_deps = [ 62 public_deps = [
61 ":interfaces", 63 ":interfaces",
62 ] 64 ]
63 } 65 }
OLDNEW
« no previous file with comments | « no previous file | cc/ipc/shared_quad_state.mojom » ('j') | cc/ipc/shared_quad_state.mojom » ('J')

Powered by Google App Engine
This is Rietveld 408576698