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

Side by Side Diff: third_party/third_party.gyp

Issue 815103002: Update freetype to 2.5.4. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Clean Up Created 6 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
« third_party/BUILD.gn ('K') | « third_party/freetype/src/type1/type1.c ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2014 PDFium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'safemath',
9 'type': 'none',
10 'sources': [
11 'logging.h',
12 'macros.h',
13 'template_util.h',
14 'numerics/safe_conversions.h',
15 'numerics/safe_conversions_impl.h',
16 'numerics/safe_math.h',
17 'numerics/safe_math_impl.h',
18 ],
19 },
20 {
21 'target_name': 'bigint',
22 'type': 'static_library',
23 'sources': [
24 'bigint/BigInteger.hh',
25 'bigint/BigIntegerLibrary.hh',
26 'bigint/BigIntegerUtils.hh',
27 'bigint/BigUnsigned.hh',
28 'bigint/NumberlikeArray.hh',
29 'bigint/BigUnsignedInABase.hh',
30 'bigint/BigInteger.cc',
31 'bigint/BigIntegerUtils.cc',
32 'bigint/BigUnsigned.cc',
33 'bigint/BigUnsignedInABase.cc',
34 ],
35 },
36 {
Lei Zhang 2014/12/19 20:19:12 nit: funny indentation
Bo Xu 2014/12/19 22:16:56 Done.
37 'target_name': 'freetype',
38 'type': 'static_library',
39 'defines': [
40 'FT2_BUILD_LIBRARY',
41 ],
42 'include_dirs': [
43 'freetype/include',
44 ],
45 'sources': [
46 'freetype/include/freetype.h',
47 'freetype/include/ft2build.h',
48 'freetype/include/ftmm.h',
49 'freetype/include/ftotval.h',
50 'freetype/include/ftoutln.h',
51 'freetype/include/tttables.h',
52 'freetype/include/internal/ftobjs.h',
53 'freetype/include/internal/ftstream.h',
54 'freetype/include/internal/tttypes.h',
55 'freetype/src/cff/cffobjs.h',
56 'freetype/src/cff/cfftypes.h',
57 'freetype/src/cff/cff.c',
58 'freetype/src/base/ftbase.c',
59 'freetype/src/base/ftbitmap.c',
60 'freetype/src/base/ftglyph.c',
61 'freetype/src/base/ftinit.c',
62 'freetype/src/base/ftlcdfil.c',
63 'freetype/src/base/ftmm.c',
64 'freetype/src/base/ftsystem.c',
65 'freetype/src/psaux/psaux.c',
66 'freetype/src/pshinter/pshinter.c',
67 'freetype/src/psnames/psmodule.c',
68 'freetype/src/raster/raster.c',
69 'freetype/src/sfnt/sfnt.c',
70 'freetype/src/smooth/smooth.c',
71 'freetype/src/truetype/truetype.c',
72 'freetype/src/type1/type1.c',
73 'freetype/src/cid/type1cid.c',
74 ],
75 },
76 ],
77 }
OLDNEW
« third_party/BUILD.gn ('K') | « third_party/freetype/src/type1/type1.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698