OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'fontconfig', | 8 'target_name': 'fontconfig', |
9 'type': '<(component)', | 9 'type': '<(component)', |
10 'dependencies' : [ | 10 'dependencies' : [ |
11 '../zlib/zlib.gyp:zlib', | 11 '../zlib/zlib.gyp:zlib', |
12 '../../build/linux/system.gyp:freetype2', | 12 '../../build/linux/system.gyp:freetype2', |
13 '../libxml/libxml.gyp:libxml', | 13 '../libxml/libxml.gyp:libxml', |
14 ], | 14 ], |
15 'defines': [ | 15 'defines': [ |
16 'HAVE_CONFIG_H', | 16 'HAVE_CONFIG_H', |
17 'FC_CACHEDIR="/var/cache/fontconfig"', | 17 'FC_CACHEDIR="/var/cache/fontconfig"', |
18 'FONTCONFIG_PATH="/etc/fonts"', | 18 'FONTCONFIG_PATH="/etc/fonts"', |
19 ], | 19 ], |
20 'sources': [ | 20 'sources': [ |
21 'src/fcarch.h', | 21 'src/src/fcarch.h', |
22 'src/fcatomic.c', | 22 'src/src/fcatomic.c', |
23 'src/fcblanks.c', | 23 'src/src/fcblanks.c', |
24 'src/fccache.c', | 24 'src/src/fccache.c', |
25 'src/fccfg.c', | 25 'src/src/fccfg.c', |
26 'src/fccharset.c', | 26 'src/src/fccharset.c', |
27 'src/fccompat.c', | 27 'src/src/fccompat.c', |
28 'src/fcdbg.c', | 28 'src/src/fcdbg.c', |
29 'src/fcdefault.c', | 29 'src/src/fcdefault.c', |
30 'src/fcdir.c', | 30 'src/src/fcdir.c', |
31 'src/fcformat.c', | 31 'src/src/fcformat.c', |
32 'src/fcfreetype.c', | 32 'src/src/fcfreetype.c', |
33 'src/fcfs.c', | 33 'src/src/fcfs.c', |
34 'src/fchash.c', | 34 'src/src/fchash.c', |
35 'src/fcinit.c', | 35 'src/src/fcinit.c', |
36 'src/fclang.c', | 36 'src/src/fclang.c', |
37 'src/fclist.c', | 37 'src/src/fclist.c', |
38 'src/fcmatch.c', | 38 'src/src/fcmatch.c', |
39 'src/fcmatrix.c', | 39 'src/src/fcmatrix.c', |
40 'src/fcname.c', | 40 'src/src/fcname.c', |
41 'src/fcobjs.c', | 41 'src/src/fcobjs.c', |
42 'src/fcpat.c', | 42 'src/src/fcpat.c', |
43 'src/fcserialize.c', | 43 'src/src/fcserialize.c', |
44 'src/fcstat.c', | 44 'src/src/fcstat.c', |
45 'src/fcstr.c', | 45 'src/src/fcstr.c', |
46 'src/fcxml.c', | 46 'src/src/fcxml.c', |
47 'src/ftglue.h', | 47 'src/src/ftglue.h', |
48 'src/ftglue.c', | 48 'src/src/ftglue.c', |
49 ], | 49 ], |
50 'include_dirs': [ | 50 'include_dirs': [ |
51 'src', | 51 'src', |
52 'include', | 52 'include', |
53 'include/src', | 53 'include/src', |
54 ], | 54 ], |
55 'direct_dependent_settings': { | 55 'direct_dependent_settings': { |
56 'include_dirs': [ | 56 'include_dirs': [ |
57 'src', | 57 'src', |
58 ], | 58 ], |
59 }, | 59 }, |
60 }, | 60 }, |
61 ], | 61 ], |
62 } | 62 } |
OLD | NEW |