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

Side by Side Diff: core/src/fxge/fx_freetype/fxft2.5.01/src/sfnt/rules.mk

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 #
2 # FreeType 2 SFNT driver configuration rules
3 #
4
5
6 # Copyright 1996-2000, 2002-2007, 2009, 2011, 2013 by
7 # David Turner, Robert Wilhelm, and Werner Lemberg.
8 #
9 # This file is part of the FreeType project, and may only be used, modified,
10 # and distributed under the terms of the FreeType project license,
11 # LICENSE.TXT. By continuing to use, modify, or distribute this file you
12 # indicate that you have read the license and understand and accept it
13 # fully.
14
15
16 # SFNT driver directory
17 #
18 SFNT_DIR := $(SRC_DIR)/sfnt
19
20
21 # compilation flags for the driver
22 #
23 SFNT_COMPILE := $(FT_COMPILE) $I$(subst /,$(COMPILER_SEP),$(SFNT_DIR))
24
25
26 # SFNT driver sources (i.e., C files)
27 #
28 SFNT_DRV_SRC := $(SFNT_DIR)/ttload.c \
29 $(SFNT_DIR)/ttmtx.c \
30 $(SFNT_DIR)/ttcmap.c \
31 $(SFNT_DIR)/ttsbit.c \
32 $(SFNT_DIR)/ttpost.c \
33 $(SFNT_DIR)/ttkern.c \
34 $(SFNT_DIR)/ttbdf.c \
35 $(SFNT_DIR)/sfobjs.c \
36 $(SFNT_DIR)/sfdriver.c \
37 $(SFNT_DIR)/sfntpic.c \
38 $(SFNT_DIR)/pngshim.c
39
40 # SFNT driver headers
41 #
42 SFNT_DRV_H := $(SFNT_DRV_SRC:%c=%h) \
43 $(SFNT_DIR)/sferrors.h
44
45
46 # SFNT driver object(s)
47 #
48 # SFNT_DRV_OBJ_M is used during `multi' builds.
49 # SFNT_DRV_OBJ_S is used during `single' builds.
50 #
51 SFNT_DRV_OBJ_M := $(SFNT_DRV_SRC:$(SFNT_DIR)/%.c=$(OBJ_DIR)/%.$O)
52 SFNT_DRV_OBJ_S := $(OBJ_DIR)/sfnt.$O
53
54 # SFNT driver source file for single build
55 #
56 SFNT_DRV_SRC_S := $(SFNT_DIR)/sfnt.c
57
58
59 # SFNT driver - single object
60 #
61 $(SFNT_DRV_OBJ_S): $(SFNT_DRV_SRC_S) $(SFNT_DRV_SRC) \
62 $(FREETYPE_H) $(SFNT_DRV_H)
63 $(SFNT_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(SFNT_DRV_SRC_S))
64
65
66 # SFNT driver - multiple objects
67 #
68 $(OBJ_DIR)/%.$O: $(SFNT_DIR)/%.c $(FREETYPE_H) $(SFNT_DRV_H)
69 $(SFNT_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
70
71
72 # update main driver object lists
73 #
74 DRV_OBJS_S += $(SFNT_DRV_OBJ_S)
75 DRV_OBJS_M += $(SFNT_DRV_OBJ_M)
76
77
78 # EOF
OLDNEW
« no previous file with comments | « core/src/fxge/fx_freetype/fxft2.5.01/src/sfnt/pngshim.c ('k') | core/src/fxge/fx_freetype/fxft2.5.01/src/sfnt/sfdriver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698