Home | History | Annotate | Download | only in gyp
      1 # GYP file to build unit tests.
      2 {
      3   'includes': [
      4     'apptype_console.gypi',
      5     'common.gypi',
      6   ],
      7   'targets': [
      8     {
      9       'target_name': 'addTest',
     10       'type': 'executable',
     11       'include_dirs' : [
     12         '../src/core',
     13       ],
     14       'sources': [
     15         '../experimental/Intersection/AddTestOutput/main.cpp',
     16       ],
     17       'dependencies': [
     18         'skia_lib.gyp:skia_lib',
     19         'experimental.gyp:experimental',
     20         'pdf.gyp:pdf',
     21       ],
     22       'conditions': [
     23         [ 'skia_gpu == 1', {
     24           'include_dirs': [
     25             '../src/gpu',
     26           ],
     27         }],
     28       ],
     29     },
     30   ],
     31 }
     32 
     33 # Local Variables:
     34 # tab-width:2
     35 # indent-tabs-mode:nil
     36 # End:
     37 # vim: set expandtab tabstop=2 shiftwidth=2:
     38