forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.gn
140 lines (131 loc) · 3.44 KB
/
BUILD.gn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//mojo/public/tools/bindings/mojom.gni")
# Normally typemap traits sources should be build directly into mojom targets
# via the typemap file. This target is for typemapped mojo_base types whose
# traits are shared between chromium and blink variants.
component("shared_typemap_traits") {
output_name = "skia_shared_typemap_traits"
sources = [
"bitmap_skbitmap_mojom_traits.cc",
"bitmap_skbitmap_mojom_traits.h",
"image_info_mojom_traits.cc",
"image_info_mojom_traits.h",
"surface_origin_mojom_traits.h",
]
defines = [ "IS_SKIA_SHARED_TRAITS_IMPL" ]
public_deps = [
"//base",
"//mojo/public/cpp/base:shared_typemap_traits",
"//skia",
"//skia:skcms",
"//skia/public/mojom:mojom_shared",
]
}
mojom("mojom") {
generate_java = true
sources = [
"bitmap.mojom",
"image_info.mojom",
"skcolor.mojom",
"surface_origin.mojom",
"tile_mode.mojom",
]
public_deps = [ "//mojo/public/mojom/base" ]
shared_skia_cpp_typemaps = [
{
types = [
{
mojom = "skia.mojom.TileMode"
cpp = "::SkTileMode"
},
]
traits_headers = [ "tile_mode_mojom_traits.h" ]
traits_public_deps = [ "//skia" ]
},
{
types = [
{
mojom = "skia.mojom.BitmapN32"
cpp = "::SkBitmap"
nullable_is_same_type = true
},
{
mojom = "skia.mojom.BitmapWithArbitraryBpp"
cpp = "::SkBitmap"
nullable_is_same_type = true
},
{
mojom = "skia.mojom.BitmapWithArbitraryBpp"
cpp = "::SkBitmap"
nullable_is_same_type = true
},
{
mojom = "skia.mojom.BitmapMappedFromTrustedProcess"
cpp = "::SkBitmap"
nullable_is_same_type = true
},
{
mojom = "skia.mojom.InlineBitmap"
cpp = "::SkBitmap"
nullable_is_same_type = true
},
]
traits_headers = [ "bitmap_skbitmap_mojom_traits.h" ]
traits_public_deps = [
":shared_typemap_traits",
"//skia",
]
},
{
types = [
{
mojom = "skia.mojom.SkColor"
cpp = "::SkColor"
copyable_pass_by_value = true
},
]
traits_headers = [ "skcolor_mojom_traits.h" ]
traits_public_deps = [ "//skia" ]
},
{
types = [
{
mojom = "skia.mojom.AlphaType"
cpp = "::SkAlphaType"
},
{
mojom = "skia.mojom.ColorType"
cpp = "::SkColorType"
},
{
mojom = "skia.mojom.ImageInfo"
cpp = "::SkImageInfo"
},
{
mojom = "skia.mojom.BitmapN32ImageInfo"
cpp = "::SkImageInfo"
},
]
traits_headers = [ "image_info_mojom_traits.h" ]
traits_public_deps = [
":shared_typemap_traits",
"//skia",
]
},
{
types = [
{
mojom = "skia.mojom.SurfaceOrigin"
cpp = "::GrSurfaceOrigin"
},
]
traits_headers = [ "surface_origin_mojom_traits.h" ]
traits_public_deps = [ ":shared_typemap_traits" ]
},
]
cpp_typemaps = shared_skia_cpp_typemaps
blink_cpp_typemaps = shared_skia_cpp_typemaps
webui_module_path = "chrome://resources/mojo/skia/public/mojom/"
}