summaryrefslogtreecommitdiff
path: root/fontconfig.gyp
diff options
context:
space:
mode:
authorvandebo@chromium.org <vandebo@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-08-20 17:06:22 +0000
committervandebo@chromium.org <vandebo@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-08-20 17:06:22 +0000
commit95e139e06c00fa2690fe02e09e1345501058048b (patch)
tree312599f5883883897a582ce7e3d53071bdb47869 /fontconfig.gyp
parent07eb09ed1ce04a4510ddeceb505e34b71074a0c8 (diff)
downloadgyp-95e139e06c00fa2690fe02e09e1345501058048b.tar.gz
Revert "The CL adds libpoppler to DEPS and adds a libpoppler-cpp gyp target for Linux, Windows, and Mac. This does not currently change the GM tool to use poppler - that will be a refactor job in a separate CL."
This reverts commit r10823 TBR=richardlin@chromium.org Review URL: https://codereview.chromium.org/23190020 git-svn-id: http://skia.googlecode.com/svn/trunk/gyp@10828 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'fontconfig.gyp')
-rw-r--r--fontconfig.gyp101
1 files changed, 0 insertions, 101 deletions
diff --git a/fontconfig.gyp b/fontconfig.gyp
deleted file mode 100644
index 94f6e4e..0000000
--- a/fontconfig.gyp
+++ /dev/null
@@ -1,101 +0,0 @@
-# GYP for fontconfig (
-#
-# This has been tested on Windows and Mac.
-# This library is native to Linux, so build from source is not necessary.
-#
-# Additional files for building under Windows are provided here: (LGPL)
-# http://comments.gmane.org/gmane.comp.fonts.fontconfig/4438
-
-{
- 'variables': {
- 'skia_warnings_as_errors': 0,
- },
- 'targets': [
- {
- 'target_name': 'fontconfig',
- 'type': 'static_library',
- 'dependencies': [
- 'freetype.gyp:freetype_poppler',
- ],
- 'include_dirs' : [
- '../third_party/externals/fontconfig',
-
- '../third_party/fontconfig/config',
- '../third_party/fontconfig/config/src',
- ],
- 'sources': [
- '../third_party/externals/fontconfig/src/fcatomic.c',
- '../third_party/externals/fontconfig/src/fcblanks.c',
- '../third_party/externals/fontconfig/src/fccache.c',
- '../third_party/externals/fontconfig/src/fccfg.c',
- '../third_party/externals/fontconfig/src/fccharset.c',
- '../third_party/externals/fontconfig/src/fccompat.c',
- '../third_party/externals/fontconfig/src/fcdbg.c',
- '../third_party/externals/fontconfig/src/fcdefault.c',
- '../third_party/externals/fontconfig/src/fcdir.c',
- '../third_party/externals/fontconfig/src/fcfreetype.c',
- '../third_party/externals/fontconfig/src/fcfs.c',
- '../third_party/externals/fontconfig/src/fchash.c',
- '../third_party/externals/fontconfig/src/fcinit.c',
- '../third_party/externals/fontconfig/src/fclang.c',
- '../third_party/externals/fontconfig/src/fclist.c',
- '../third_party/externals/fontconfig/src/fcmatch.c',
- '../third_party/externals/fontconfig/src/fcmatrix.c',
- '../third_party/externals/fontconfig/src/fcname.c',
- '../third_party/externals/fontconfig/src/fcobjs.c',
- '../third_party/externals/fontconfig/src/fcpat.c',
- '../third_party/externals/fontconfig/src/fcserialize.c',
- '../third_party/externals/fontconfig/src/fcstat.c',
- '../third_party/externals/fontconfig/src/fcstr.c',
- '../third_party/externals/fontconfig/src/fcxml.c',
- '../third_party/externals/fontconfig/src/ftglue.c',
- ],
- 'defines': [
- 'HAVE_CONFIG_H',
- ],
- 'cflags': [
- '-fPIC',
- ],
-
- 'direct_dependent_settings': {
- 'include_dirs': [
- '../third_party/externals/fontconfig',
- ],
- },
-
- 'conditions': [
- ['skia_os == "mac"', {
- 'include_dirs': [
- '../third_party/fontconfig/config/mac',
- '../third_party/fontconfig/config/mac/src',
- ],
- 'defines': [
- 'FC_CACHEDIR',
- 'FONTCONFIG_PATH',
- ],
- 'libraries': [
- '$(SDKROOT)/usr/lib/libexpat.dylib',
- ],
- 'xcode_settings': {
- 'DYLIB_INSTALL_NAME_BASE': '@executable_path',
- },
- }],
- ['skia_os == "win"', {
- 'include_dirs': [
- '../third_party/fontconfig/config/windows',
- '../third_party/fontconfig/config/windows/src',
- ],
- 'sources!': [
- '../third_party/externals/fontconfig/src/fccompat.c',
- '../third_party/externals/fontconfig/src/fcxml.c',
- ],
- 'defines': [
- # inline is not recognized in C and has to be __inline
- 'inline=__inline',
- ],
- }],
- ],
- },
- ],
-}
-