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
|
# Copyright 2014 PDFium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'targets': [
{
'target_name': 'bigint',
'type': 'static_library',
'sources': [
'bigint/BigInteger.hh',
'bigint/BigIntegerLibrary.hh',
'bigint/BigIntegerUtils.hh',
'bigint/BigUnsigned.hh',
'bigint/NumberlikeArray.hh',
'bigint/BigUnsignedInABase.hh',
'bigint/BigInteger.cc',
'bigint/BigIntegerUtils.cc',
'bigint/BigUnsigned.cc',
'bigint/BigUnsignedInABase.cc',
],
},
{
'target_name': 'freetype',
'type': 'static_library',
'defines': [
'FT2_BUILD_LIBRARY',
],
'include_dirs': [
'freetype/include',
],
'sources': [
'freetype/include/freetype.h',
'freetype/include/ft2build.h',
'freetype/include/ftmm.h',
'freetype/include/ftotval.h',
'freetype/include/ftoutln.h',
'freetype/include/tttables.h',
'freetype/include/internal/ftobjs.h',
'freetype/include/internal/ftstream.h',
'freetype/include/internal/tttypes.h',
'freetype/src/cff/cffobjs.h',
'freetype/src/cff/cfftypes.h',
'freetype/src/cff/cff.c',
'freetype/src/base/ftbase.c',
'freetype/src/base/ftbitmap.c',
'freetype/src/base/ftglyph.c',
'freetype/src/base/ftinit.c',
'freetype/src/base/ftlcdfil.c',
'freetype/src/base/ftmm.c',
'freetype/src/base/ftsystem.c',
'freetype/src/psaux/psaux.c',
'freetype/src/pshinter/pshinter.c',
'freetype/src/psnames/psmodule.c',
'freetype/src/raster/raster.c',
'freetype/src/sfnt/sfnt.c',
'freetype/src/smooth/smooth.c',
'freetype/src/truetype/truetype.c',
'freetype/src/type1/type1.c',
'freetype/src/cid/type1cid.c',
],
},
{
'target_name': 'fx_agg',
'type': 'static_library',
'sources': [
'agg23/agg_basics.h',
'agg23/agg_clip_liang_barsky.h',
'agg23/agg_conv_dash.h',
'agg23/agg_conv_stroke.h',
'agg23/agg_curves.cpp',
'agg23/agg_curves.h',
'agg23/agg_path_storage.cpp',
'agg23/agg_path_storage.h',
'agg23/agg_rasterizer_scanline_aa.cpp',
'agg23/agg_rasterizer_scanline_aa.h',
'agg23/agg_renderer_scanline.h',
'agg23/agg_rendering_buffer.h',
'agg23/agg_scanline_u.h',
'agg23/agg_vcgen_dash.cpp',
'agg23/agg_vcgen_stroke.cpp',
],
'conditions': [
['os_posix==1', {
# library contains several enum vs non-enum conditionals.
'cflags': [ '-Wno-extra', ],
}],
],
},
{
'target_name': 'fx_lcms2',
'type': 'static_library',
'sources': [
'lcms2-2.6/include/lcms2.h',
'lcms2-2.6/include/lcms2_plugin.h',
'lcms2-2.6/src/cmscam02.c',
'lcms2-2.6/src/cmscgats.c',
'lcms2-2.6/src/cmscnvrt.c',
'lcms2-2.6/src/cmserr.c',
'lcms2-2.6/src/cmsgamma.c',
'lcms2-2.6/src/cmsgmt.c',
'lcms2-2.6/src/cmshalf.c',
'lcms2-2.6/src/cmsintrp.c',
'lcms2-2.6/src/cmsio0.c',
'lcms2-2.6/src/cmsio1.c',
'lcms2-2.6/src/cmslut.c',
'lcms2-2.6/src/cmsmd5.c',
'lcms2-2.6/src/cmsmtrx.c',
'lcms2-2.6/src/cmsnamed.c',
'lcms2-2.6/src/cmsopt.c',
'lcms2-2.6/src/cmspack.c',
'lcms2-2.6/src/cmspcs.c',
'lcms2-2.6/src/cmsplugin.c',
'lcms2-2.6/src/cmsps2.c',
'lcms2-2.6/src/cmssamp.c',
'lcms2-2.6/src/cmssm.c',
'lcms2-2.6/src/cmstypes.c',
'lcms2-2.6/src/cmsvirt.c',
'lcms2-2.6/src/cmswtpnt.c',
'lcms2-2.6/src/cmsxform.c',
],
'conditions': [
['os_posix==1', {
'cflags': [
'-Wno-main',
'-Wno-missing-braces',
'-Wno-unused',
],
}],
],
},
{
'target_name': 'pdfium_base',
'type': 'none',
'sources': [
'base/logging.h',
'base/macros.h',
'base/nonstd_unique_ptr.h',
'base/template_util.h',
'base/numerics/safe_conversions.h',
'base/numerics/safe_conversions_impl.h',
'base/numerics/safe_math.h',
'base/numerics/safe_math_impl.h',
],
},
],
}
|