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

Side by Side Diff: core/src/fxge/fx_freetype/fxft2.5.01/src/base/Jamfile

Issue 815103002: Update freetype to 2.5.4. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Adjust GYP and GN 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
OLDNEW
(Empty)
1 # FreeType 2 src/base Jamfile
2 #
3 # Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by
4 # David Turner, Robert Wilhelm, and Werner Lemberg.
5 #
6 # This file is part of the FreeType project, and may only be used, modified,
7 # and distributed under the terms of the FreeType project license,
8 # LICENSE.TXT. By continuing to use, modify, or distribute this file you
9 # indicate that you have read the license and understand and accept it
10 # fully.
11
12 SubDir FT2_TOP $(FT2_SRC_DIR) base ;
13
14
15 {
16 local _sources ;
17
18 if $(FT2_MULTI)
19 {
20 _sources = ftadvanc ftcalc ftdbgmem ftgloadr
21 ftobjs ftoutln ftrfork ftsnames
22 ftstream fttrigon ftutil
23 basepic ftpic
24 ;
25 }
26 else
27 {
28 _sources = ftbase ;
29 }
30
31 Library $(FT2_LIB) : $(_sources).c ;
32 }
33
34 # Add the optional/replaceable files.
35 #
36 {
37 local _sources = bbox bdf bitmap debug gasp
38 glyph gxval init lcdfil mm
39 otval pfr stroke synth system
40 type1 winfnt xf86 patent
41 ;
42
43 Library $(FT2_LIB) : ft$(_sources).c ;
44 }
45
46 # Add Macintosh-specific file to the library when necessary.
47 #
48 if $(MAC)
49 {
50 Library $(FT2_LIB) : ftmac.c ;
51 }
52 else if $(OS) = MACOSX
53 {
54 if $(FT2_MULTI)
55 {
56 Library $(FT2_LIB) : ftmac.c ;
57 }
58 }
59
60 # end of src/base Jamfile
OLDNEW
« no previous file with comments | « core/src/fxge/fx_freetype/fxft2.5.01/include/ft2build.h ('k') | core/src/fxge/fx_freetype/fxft2.5.01/src/base/basepic.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698