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', |
| 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', |
| 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', |
| 54 ], |
| 55 'direct_dependent_settings': { |
| 56 'include_dirs': [ |
| 57 'src', |
| 58 ], |
| 59 }, |
| 60 }, |
| 61 ], |
| 62 } |
OLD | NEW |