summaryrefslogtreecommitdiff
path: root/deps/v8/build/linux/unbundle/icu.gn
blob: 4450e409dba554c2bf66bc5d84235a432925e578 (plain)
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
# Copyright 2016 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("//build/config/linux/pkg_config.gni")
import("//build/shim_headers.gni")

group("icu") {
  public_deps = [
    ":icui18n",
    ":icuuc",
  ]
}

config("icu_config") {
  defines = [
    "USING_SYSTEM_ICU=1",
    "ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC",
    "UCHAR_TYPE=uint16_t",

    # U_EXPORT (defined in unicode/platform.h) is used to set public visibility
    # on classes through the U_COMMON_API and U_I18N_API macros (among others).
    # When linking against the system ICU library, we want its symbols to have
    # public LTO visibility. This disables CFI checks for the ICU classes and
    # allows whole-program optimization to be applied to the rest of Chromium.
    #
    # Both U_COMMON_API and U_I18N_API macros would be defined to U_EXPORT only
    # when U_COMBINED_IMPLEMENTATION is defined (see unicode/utypes.h). Because
    # we override the default system UCHAR_TYPE (char16_t), it is not possible
    # to use U_COMBINED_IMPLEMENTATION at this moment, meaning the U_COMMON_API
    # and U_I18N_API macros are set to U_IMPORT which is an empty definition.
    #
    # Until building with UCHAR_TYPE=char16_t is supported, one way to apply
    # public visibility (and thus public LTO visibility) to all ICU classes is
    # to define U_IMPORT to have the same value as U_EXPORT. For more details,
    # please see: https://crbug.com/822820
    "U_IMPORT=U_EXPORT",
  ]
}

pkg_config("system_icui18n") {
  packages = [ "icu-i18n" ]
}

pkg_config("system_icuuc") {
  packages = [ "icu-uc" ]
}

source_set("icui18n") {
  deps = [
    ":icui18n_shim",
  ]
  public_configs = [
    ":icu_config",
    ":system_icui18n",
  ]
}

source_set("icuuc") {
  deps = [
    ":icuuc_shim",
  ]
  public_configs = [
    ":icu_config",
    ":system_icuuc",
  ]
}

shim_headers("icui18n_shim") {
  root_path = "source/i18n"
  headers = [
    # This list can easily be updated using the commands below:
    # cd third_party/icu/source/i18n
    # find unicode -iname '*.h' -printf '    "%p",\n' | LC_ALL=C sort -u
    "unicode/alphaindex.h",
    "unicode/basictz.h",
    "unicode/calendar.h",
    "unicode/choicfmt.h",
    "unicode/coleitr.h",
    "unicode/coll.h",
    "unicode/compactdecimalformat.h",
    "unicode/curramt.h",
    "unicode/currpinf.h",
    "unicode/currunit.h",
    "unicode/datefmt.h",
    "unicode/dcfmtsym.h",
    "unicode/decimfmt.h",
    "unicode/dtfmtsym.h",
    "unicode/dtitvfmt.h",
    "unicode/dtitvinf.h",
    "unicode/dtptngen.h",
    "unicode/dtrule.h",
    "unicode/fieldpos.h",
    "unicode/fmtable.h",
    "unicode/format.h",
    "unicode/fpositer.h",
    "unicode/gender.h",
    "unicode/gregocal.h",
    "unicode/measfmt.h",
    "unicode/measunit.h",
    "unicode/measure.h",
    "unicode/msgfmt.h",
    "unicode/numfmt.h",
    "unicode/numsys.h",
    "unicode/plurfmt.h",
    "unicode/plurrule.h",
    "unicode/rbnf.h",
    "unicode/rbtz.h",
    "unicode/regex.h",
    "unicode/region.h",
    "unicode/reldatefmt.h",
    "unicode/scientificnumberformatter.h",
    "unicode/search.h",
    "unicode/selfmt.h",
    "unicode/simpletz.h",
    "unicode/smpdtfmt.h",
    "unicode/sortkey.h",
    "unicode/stsearch.h",
    "unicode/tblcoll.h",
    "unicode/timezone.h",
    "unicode/tmunit.h",
    "unicode/tmutamt.h",
    "unicode/tmutfmt.h",
    "unicode/translit.h",
    "unicode/tzfmt.h",
    "unicode/tznames.h",
    "unicode/tzrule.h",
    "unicode/tztrans.h",
    "unicode/ucal.h",
    "unicode/ucol.h",
    "unicode/ucoleitr.h",
    "unicode/ucsdet.h",
    "unicode/udat.h",
    "unicode/udateintervalformat.h",
    "unicode/udatpg.h",
    "unicode/ufieldpositer.h",
    "unicode/uformattable.h",
    "unicode/ugender.h",
    "unicode/ulocdata.h",
    "unicode/umsg.h",
    "unicode/unirepl.h",
    "unicode/unum.h",
    "unicode/unumsys.h",
    "unicode/upluralrules.h",
    "unicode/uregex.h",
    "unicode/uregion.h",
    "unicode/ureldatefmt.h",
    "unicode/usearch.h",
    "unicode/uspoof.h",
    "unicode/utmscale.h",
    "unicode/utrans.h",
    "unicode/vtzone.h",
  ]
}

shim_headers("icuuc_shim") {
  root_path = "source/common"
  headers = [
    # This list can easily be updated using the commands below:
    # cd third_party/icu/source/common
    # find unicode -iname '*.h' -printf '    "%p",\n' | LC_ALL=C sort -u
    "unicode/appendable.h",
    "unicode/brkiter.h",
    "unicode/bytestream.h",
    "unicode/bytestrie.h",
    "unicode/bytestriebuilder.h",
    "unicode/caniter.h",
    "unicode/casemap.h",
    "unicode/char16ptr.h",
    "unicode/chariter.h",
    "unicode/dbbi.h",
    "unicode/docmain.h",
    "unicode/dtintrv.h",
    "unicode/edits.h",
    "unicode/enumset.h",
    "unicode/errorcode.h",
    "unicode/filteredbrk.h",
    "unicode/icudataver.h",
    "unicode/icuplug.h",
    "unicode/idna.h",
    "unicode/listformatter.h",
    "unicode/localpointer.h",
    "unicode/locdspnm.h",
    "unicode/locid.h",
    "unicode/messagepattern.h",
    "unicode/normalizer2.h",
    "unicode/normlzr.h",
    "unicode/parseerr.h",
    "unicode/parsepos.h",
    "unicode/platform.h",
    "unicode/ptypes.h",
    "unicode/putil.h",
    "unicode/rbbi.h",
    "unicode/rep.h",
    "unicode/resbund.h",
    "unicode/schriter.h",
    "unicode/simpleformatter.h",
    "unicode/std_string.h",
    "unicode/strenum.h",
    "unicode/stringpiece.h",
    "unicode/stringtriebuilder.h",
    "unicode/symtable.h",
    "unicode/ubidi.h",
    "unicode/ubiditransform.h",
    "unicode/ubrk.h",
    "unicode/ucasemap.h",
    "unicode/ucat.h",
    "unicode/uchar.h",
    "unicode/ucharstrie.h",
    "unicode/ucharstriebuilder.h",
    "unicode/uchriter.h",
    "unicode/uclean.h",
    "unicode/ucnv.h",
    "unicode/ucnv_cb.h",
    "unicode/ucnv_err.h",
    "unicode/ucnvsel.h",
    "unicode/uconfig.h",
    "unicode/ucurr.h",
    "unicode/udata.h",
    "unicode/udisplaycontext.h",
    "unicode/uenum.h",
    "unicode/uidna.h",
    "unicode/uiter.h",
    "unicode/uldnames.h",
    "unicode/ulistformatter.h",
    "unicode/uloc.h",
    "unicode/umachine.h",
    "unicode/umisc.h",
    "unicode/unifilt.h",
    "unicode/unifunct.h",
    "unicode/unimatch.h",
    "unicode/uniset.h",
    "unicode/unistr.h",
    "unicode/unorm.h",
    "unicode/unorm2.h",
    "unicode/uobject.h",
    "unicode/urename.h",
    "unicode/urep.h",
    "unicode/ures.h",
    "unicode/uscript.h",
    "unicode/uset.h",
    "unicode/usetiter.h",
    "unicode/ushape.h",
    "unicode/usprep.h",
    "unicode/ustring.h",
    "unicode/ustringtrie.h",
    "unicode/utext.h",
    "unicode/utf.h",
    "unicode/utf16.h",
    "unicode/utf32.h",
    "unicode/utf8.h",
    "unicode/utf_old.h",
    "unicode/utrace.h",
    "unicode/utypes.h",
    "unicode/uvernum.h",
    "unicode/uversion.h",
  ]
}