Home | History | Annotate | Download | only in gyp
      1 # GYP file to build performance testbench.
      2 #
      3 {
      4   'includes': [
      5     'apptype_console.gypi',
      6     'common.gypi',
      7   ],
      8   'targets': [
      9     {
     10       'target_name': 'bench',
     11       'type': 'executable',
     12       'include_dirs' : [
     13         '../src/core',
     14         '../src/gpu',
     15       ],
     16       'includes': [
     17         'bench.gypi'
     18       ],
     19       'dependencies': [
     20         'core.gyp:core',
     21         'effects.gyp:effects',
     22         'gpu.gyp:gr',
     23         'gpu.gyp:skgr',
     24         'images.gyp:images',
     25         'ports.gyp:ports',
     26         'utils.gyp:utils',
     27       ],
     28     },
     29   ],
     30 }
     31 
     32 # Local Variables:
     33 # tab-width:2
     34 # indent-tabs-mode:nil
     35 # End:
     36 # vim: set expandtab tabstop=2 shiftwidth=2:
     37