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

Side by Side Diff: third_party/ots/Makefile.am

Issue 1487543005: Update OTS to revision 99a3b7f (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « third_party/ots/INSTALL ('k') | third_party/ots/README.chromium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 NULL = 1 NULL =
2 2
3 ACLOCAL_AMFLAGS = -I m4 3 ACLOCAL_AMFLAGS = -I m4
4 4
5 bin_PROGRAMS = \ 5 bin_PROGRAMS = \
6 ot-sanitise \ 6 ot-sanitise \
7 $(NULL) 7 $(NULL)
8 8
9 noinst_PROGRAMS = \ 9 noinst_PROGRAMS = $(NULL)
10 perf \ 10
11 $(NULL) 11 if HAVE_SYSTIME
12 noinst_PROGRAMS += perf
13 endif
12 14
13 if HAVE_FREETYPE 15 if HAVE_FREETYPE
14 noinst_PROGRAMS += \ 16 noinst_PROGRAMS += \
15 idempotent \ 17 idempotent \
16 validator-checker \ 18 validator-checker \
17 side-by-side \ 19 side-by-side \
18 $(NULL) 20 $(NULL)
19 endif 21 endif
20 22
21 lib_LIBRARIES = \ 23 lib_LIBRARIES = \
22 libots.a \ 24 libots.a \
23 libbrotli.a \ 25 libbrotli.a \
26 libwoff2.a \
24 $(NULL) 27 $(NULL)
25 28
26 TESTS = \ 29 TESTS = \
27 cff_type2_charstring_test \ 30 cff_type2_charstring_test \
28 layout_common_table_test \ 31 layout_common_table_test \
29 table_dependencies_test \ 32 table_dependencies_test \
30 $(NULL) 33 $(NULL)
31 34
32 if HAVE_FREETYPE 35 if HAVE_FREETYPE
33 TESTS += tests/test_unmalicious_fonts.sh 36 TESTS += tests/test_unmalicious_fonts.sh
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 src/prep.cc \ 101 src/prep.cc \
99 src/prep.h \ 102 src/prep.h \
100 src/vdmx.cc \ 103 src/vdmx.cc \
101 src/vdmx.h \ 104 src/vdmx.h \
102 src/vhea.cc \ 105 src/vhea.cc \
103 src/vhea.h \ 106 src/vhea.h \
104 src/vmtx.cc \ 107 src/vmtx.cc \
105 src/vmtx.h \ 108 src/vmtx.h \
106 src/vorg.cc \ 109 src/vorg.cc \
107 src/vorg.h \ 110 src/vorg.h \
108 src/woff2.cc \
109 src/woff2.h \
110 $(NULL) 111 $(NULL)
111 112
112 113
113 pkginclude_HEADERS = \ 114 pkginclude_HEADERS = \
114 include/ots-memory-stream.h \ 115 include/ots-memory-stream.h \
115 include/opentype-sanitiser.h \ 116 include/opentype-sanitiser.h \
116 $(NULL) 117 $(NULL)
117 118
118 119
119 libbrotli_a_SOURCES = \ 120 libbrotli_a_SOURCES = \
120 third_party/brotli/dec/bit_reader.c \ 121 third_party/brotli/dec/bit_reader.c \
121 third_party/brotli/dec/bit_reader.h \ 122 third_party/brotli/dec/bit_reader.h \
122 third_party/brotli/dec/context.h \ 123 third_party/brotli/dec/context.h \
123 third_party/brotli/dec/decode.c \ 124 third_party/brotli/dec/decode.c \
124 third_party/brotli/dec/decode.h \ 125 third_party/brotli/dec/decode.h \
125 third_party/brotli/dec/dictionary.h \ 126 third_party/brotli/dec/dictionary.h \
127 third_party/brotli/dec/dictionary.c \
126 third_party/brotli/dec/huffman.c \ 128 third_party/brotli/dec/huffman.c \
127 third_party/brotli/dec/huffman.h \ 129 third_party/brotli/dec/huffman.h \
128 third_party/brotli/dec/port.h \ 130 third_party/brotli/dec/port.h \
129 third_party/brotli/dec/prefix.h \ 131 third_party/brotli/dec/prefix.h \
130 third_party/brotli/dec/safe_malloc.c \
131 third_party/brotli/dec/safe_malloc.h \
132 third_party/brotli/dec/state.c \ 132 third_party/brotli/dec/state.c \
133 third_party/brotli/dec/state.h \ 133 third_party/brotli/dec/state.h \
134 third_party/brotli/dec/streams.c \ 134 third_party/brotli/dec/streams.c \
135 third_party/brotli/dec/streams.h \ 135 third_party/brotli/dec/streams.h \
136 third_party/brotli/dec/transform.h \ 136 third_party/brotli/dec/transform.h \
137 third_party/brotli/dec/types.h \ 137 third_party/brotli/dec/types.h \
138 $(NULL) 138 $(NULL)
139 139
140 140
141 libwoff2_a_SOURCES = \
142 third_party/woff2/src/buffer.h \
143 third_party/woff2/src/round.h \
144 third_party/woff2/src/store_bytes.h \
145 third_party/woff2/src/table_tags.cc \
146 third_party/woff2/src/table_tags.h \
147 third_party/woff2/src/woff2_common.cc \
148 third_party/woff2/src/woff2_common.h \
149 third_party/woff2/src/variable_length.cc \
150 third_party/woff2/src/variable_length.h \
151 third_party/woff2/src/woff2_common.h \
152 third_party/woff2/src/woff2_dec.cc \
153 third_party/woff2/src/woff2_dec.h \
154 $(NULL)
155
156 libwoff2_a_CXXFLAGS = \
157 -std=c++11 \
158 $(NULL)
159
160
141 ot_sanitise_SOURCES = \ 161 ot_sanitise_SOURCES = \
142 util/ot-sanitise.cc \ 162 util/ot-sanitise.cc \
143 util/file-stream.h \ 163 util/file-stream.h \
144 util/test-context.h \ 164 util/test-context.h \
145 $(NULL) 165 $(NULL)
146 166
147 167
148 perf_SOURCES = \ 168 perf_SOURCES = \
149 util/perf.cc \ 169 util/perf.cc \
150 $(NULL) 170 $(NULL)
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 $(PTHREAD_LIBS) \ 224 $(PTHREAD_LIBS) \
205 $(NULL) 225 $(NULL)
206 226
207 227
208 AM_CPPFLAGS = \ 228 AM_CPPFLAGS = \
209 -I$(top_srcdir)/third_party/gtest/include \ 229 -I$(top_srcdir)/third_party/gtest/include \
210 -I$(top_srcdir)/third_party/gtest/ \ 230 -I$(top_srcdir)/third_party/gtest/ \
211 -I$(top_srcdir)/src \ 231 -I$(top_srcdir)/src \
212 -I$(top_srcdir)/include \ 232 -I$(top_srcdir)/include \
213 -I$(top_srcdir)/third_party/brotli/dec/ \ 233 -I$(top_srcdir)/third_party/brotli/dec/ \
234 -I$(top_srcdir)/third_party/woff2/src \
214 $(GTEST_CPPFLAGS) \ 235 $(GTEST_CPPFLAGS) \
215 $(NULL) 236 $(NULL)
216 237
217 AM_CXXFLAGS = \ 238 AM_CXXFLAGS = \
218 $(CORETEXT_CFLAGS) \ 239 $(CORETEXT_CFLAGS) \
219 $(FREETYPE_CFLAGS) \ 240 $(FREETYPE_CFLAGS) \
220 $(PTHREAD_CFLAGS) \ 241 $(PTHREAD_CFLAGS) \
221 $(NULL) 242 $(NULL)
222 243
223 LDADD = \ 244 LDADD = \
224 libots.a \ 245 libots.a \
246 libwoff2.a \
225 libbrotli.a \ 247 libbrotli.a \
226 -lz \ 248 -lz \
227 $(CORETEXT_LIBS) \ 249 $(CORETEXT_LIBS) \
228 $(FREETYPE_LIBS) \ 250 $(FREETYPE_LIBS) \
229 $(NULL) 251 $(NULL)
230 252
231 253
232 AM_TESTS_ENVIRONMENT = \ 254 AM_TESTS_ENVIRONMENT = \
233 EXEEXT="$(EXEEXT)"; \ 255 EXEEXT="$(EXEEXT)"; \
234 export EXEEXT; \ 256 export EXEEXT; \
235 top_srcdir="$(top_srcdir)"; \ 257 top_srcdir="$(top_srcdir)"; \
236 export top_srcdir; \ 258 export top_srcdir; \
237 top_builddir="$(top_builddir)"; \ 259 top_builddir="$(top_builddir)"; \
238 export top_builddir; \ 260 export top_builddir; \
239 $(NULL) 261 $(NULL)
240 262
241 263
242 EXTRA_DIST = \ 264 EXTRA_DIST = \
243 LICENSE \ 265 LICENSE \
244 tests/BLACKLIST.txt \ 266 tests/BLACKLIST.txt \
245 tests/test_unmalicious_fonts.sh \ 267 tests/test_unmalicious_fonts.sh \
246 third_party/brotli/LICENSE \ 268 third_party/brotli/LICENSE \
247 third_party/gtest \ 269 third_party/gtest \
270 third_party/woff2/LICENSE \
248 $(NULL) 271 $(NULL)
249 272
250 273
251 MAINTAINERCLEANFILES = \ 274 MAINTAINERCLEANFILES = \
252 $(GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL) \ 275 $(GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL) \
253 $(GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL) \ 276 $(GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL) \
254 $(GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN) \ 277 $(GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN) \
255 $(NULL) 278 $(NULL)
256 279
257 -include $(top_srcdir)/git.mk 280 -include $(top_srcdir)/git.mk
OLDNEW
« no previous file with comments | « third_party/ots/INSTALL ('k') | third_party/ots/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698