OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2014 The Chromium 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': 'fontconfig', | |
9 'type': '<(component)', | |
10 'dependencies' : [ | |
11 '../zlib/zlib.gyp:zlib', | |
12 '../../build/linux/system.gyp:freetype2', | |
13 '../libxml/libxml.gyp:libxml', | |
14 ], | |
15 'defines': [ | |
16 'HAVE_CONFIG_H', | |
17 'FC_CACHEDIR="/var/cache/fontconfig"', | |
18 'FONTCONFIG_PATH="/etc/fonts"', | |
19 ], | |
20 'sources': [ | |
21 'src/src/fcarch.h', | |
darin (slow to review)
2014/01/10 20:07:14
what's up with the "src/src" path?
spang
2014/01/10 20:18:56
fontconfig's upstream repository is checkout out a
| |
22 'src/src/fcatomic.c', | |
23 'src/src/fcblanks.c', | |
24 'src/src/fccache.c', | |
25 'src/src/fccfg.c', | |
26 'src/src/fccharset.c', | |
27 'src/src/fccompat.c', | |
28 'src/src/fcdbg.c', | |
29 'src/src/fcdefault.c', | |
30 'src/src/fcdir.c', | |
31 'src/src/fcformat.c', | |
32 'src/src/fcfreetype.c', | |
33 'src/src/fcfs.c', | |
darin (slow to review)
2014/01/10 20:07:53
I don't see these source files in this CL. What am
spang
2014/01/10 20:18:56
In this CL via DEPS.
| |
34 'src/src/fchash.c', | |
35 'src/src/fcinit.c', | |
36 'src/src/fclang.c', | |
37 'src/src/fclist.c', | |
38 'src/src/fcmatch.c', | |
39 'src/src/fcmatrix.c', | |
40 'src/src/fcname.c', | |
41 'src/src/fcobjs.c', | |
42 'src/src/fcpat.c', | |
43 'src/src/fcserialize.c', | |
44 'src/src/fcstat.c', | |
45 'src/src/fcstr.c', | |
46 'src/src/fcxml.c', | |
47 'src/src/ftglue.h', | |
48 'src/src/ftglue.c', | |
49 ], | |
50 'include_dirs': [ | |
51 'src', | |
52 'include', | |
53 'include/src', | |
darin (slow to review)
2014/01/10 20:07:14
what is up with "include/src"? usually a directory
spang
2014/01/10 20:18:56
The include directory mirrors the structure of the
spang
2014/01/10 20:35:06
Actually, it does matter, because of this rather u
| |
54 ], | |
55 'direct_dependent_settings': { | |
56 'include_dirs': [ | |
57 'src', | |
58 ], | |
59 }, | |
60 }, | |
61 ], | |
62 } | |
OLD | NEW |