Home | History | Annotate | Download | only in gyp
      1 {
      2   'targets': [
      3     {
      4       'target_name': 'pdf',
      5       'product_name': 'skia_pdf',
      6       'type': 'static_library',
      7       'standalone_static_library': 1,
      8       'dependencies': [
      9         'skia_lib.gyp:skia_lib',
     10         'zlib.gyp:zlib',
     11       ],
     12       'includes': [
     13         'pdf.gypi',
     14       ],
     15       'include_dirs': [
     16         '../include/pdf',
     17         '../src/core', # needed to get SkGlyphCache.h and SkTextFormatParams.h
     18         '../src/utils', # needed to get SkBitSet.h
     19       ],
     20       'sources': [
     21         'pdf.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
     22       ],
     23       # This section makes all targets that depend on this target
     24       # #define SK_SUPPORT_PDF and have access to the pdf header files.
     25       'direct_dependent_settings': {
     26         'defines': [
     27           'SK_SUPPORT_PDF',
     28         ],
     29         'include_dirs': [
     30           '../include/pdf',
     31         ],
     32       },
     33     },
     34   ],
     35 }
     36 
     37 # Local Variables:
     38 # tab-width:2
     39 # indent-tabs-mode:nil
     40 # End:
     41 # vim: set expandtab tabstop=2 shiftwidth=2:
     42