epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 1 | { |
| 2 | 'includes': [ |
epoger@google.com | 5351b37 | 2011-07-01 17:16:26 +0000 | [diff] [blame] | 3 | 'common.gypi', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 4 | ], |
| 5 | 'targets': [ |
| 6 | { |
| 7 | 'target_name': 'pdf', |
| 8 | 'type': 'static_library', |
| 9 | 'include_dirs': [ |
| 10 | '../include/config', |
| 11 | '../include/core', |
| 12 | '../include/pdf', |
| 13 | '../src/core', # needed to get SkGlyphCache.h and SkTextFormatParams.h |
| 14 | ], |
| 15 | 'sources': [ |
vandebo@chromium.org | d3a8c94 | 2011-07-02 01:26:37 +0000 | [diff] [blame] | 16 | '../include/pdf/SkBitSet.h', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 17 | '../include/pdf/SkPDFCatalog.h', |
| 18 | '../include/pdf/SkPDFDevice.h', |
| 19 | '../include/pdf/SkPDFDocument.h', |
| 20 | '../include/pdf/SkPDFFont.h', |
| 21 | '../include/pdf/SkPDFFormXObject.h', |
| 22 | '../include/pdf/SkPDFGraphicState.h', |
| 23 | '../include/pdf/SkPDFImage.h', |
| 24 | '../include/pdf/SkPDFPage.h', |
| 25 | '../include/pdf/SkPDFShader.h', |
| 26 | '../include/pdf/SkPDFStream.h', |
| 27 | '../include/pdf/SkPDFTypes.h', |
| 28 | '../include/pdf/SkPDFUtils.h', |
| 29 | |
vandebo@chromium.org | 9859428 | 2011-07-25 22:34:12 +0000 | [diff] [blame] | 30 | '../src/pdf/SkBitSet.cpp', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 31 | '../src/pdf/SkPDFCatalog.cpp', |
| 32 | '../src/pdf/SkPDFDevice.cpp', |
| 33 | '../src/pdf/SkPDFDocument.cpp', |
| 34 | '../src/pdf/SkPDFFont.cpp', |
vandebo@chromium.org | 9859428 | 2011-07-25 22:34:12 +0000 | [diff] [blame] | 35 | '../src/pdf/SkPDFFontImpl.h', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 36 | '../src/pdf/SkPDFFormXObject.cpp', |
| 37 | '../src/pdf/SkPDFGraphicState.cpp', |
| 38 | '../src/pdf/SkPDFImage.cpp', |
| 39 | '../src/pdf/SkPDFPage.cpp', |
| 40 | '../src/pdf/SkPDFShader.cpp', |
| 41 | '../src/pdf/SkPDFStream.cpp', |
| 42 | '../src/pdf/SkPDFTypes.cpp', |
| 43 | '../src/pdf/SkPDFUtils.cpp', |
| 44 | ], |
epoger@google.com | dcab3a1 | 2011-06-24 19:09:09 +0000 | [diff] [blame] | 45 | # This section makes all targets that depend on this target |
| 46 | # #define SK_SUPPORT_PDF and have access to the pdf header files. |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 47 | 'direct_dependent_settings': { |
epoger@google.com | dcab3a1 | 2011-06-24 19:09:09 +0000 | [diff] [blame] | 48 | 'defines': [ |
| 49 | 'SK_SUPPORT_PDF', |
| 50 | ], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 51 | 'include_dirs': [ |
| 52 | '../include/pdf', |
| 53 | ], |
| 54 | }, |
vandebo@chromium.org | 0f1c95c | 2011-06-24 23:13:47 +0000 | [diff] [blame] | 55 | 'dependencies': [ |
| 56 | 'zlib.gyp:zlib', |
| 57 | ], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 58 | }, |
| 59 | ], |
| 60 | } |
| 61 | |
| 62 | # Local Variables: |
| 63 | # tab-width:2 |
| 64 | # indent-tabs-mode:nil |
| 65 | # End: |
| 66 | # vim: set expandtab tabstop=2 shiftwidth=2: |