Home | History | Annotate | Download | only in gyp
      1 # GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2).
      2 # vim: set expandtab tabstop=4 shiftwidth=4
      3 {
      4     'includes': [ 'apptype_console.gypi' ],
      5 
      6     'targets': [{
      7         'target_name': 'dm',
      8         'type': 'executable',
      9         'include_dirs': [
     10             '../dm',
     11             '../gm',
     12             '../src/images',
     13             '../src/lazy',
     14             '../src/core',
     15             '../src/effects',
     16             '../src/pipe/utils/',
     17             '../src/utils',
     18             '../src/utils/debugger',
     19         ],
     20         'includes': [ 'gmslides.gypi' ],
     21         'sources': [
     22             '../dm/DM.cpp',
     23             '../dm/DMCpuTask.cpp',
     24             '../dm/DMExpectationsTask.cpp',
     25             '../dm/DMGpuTask.cpp',
     26             '../dm/DMPipeTask.cpp',
     27             '../dm/DMReplayTask.cpp',
     28             '../dm/DMReporter.cpp',
     29             '../dm/DMSerializeTask.cpp',
     30             '../dm/DMTask.cpp',
     31             '../dm/DMTaskRunner.cpp',
     32             '../dm/DMTileGridTask.cpp',
     33             '../dm/DMUtil.cpp',
     34             '../dm/DMWriteTask.cpp',
     35             '../gm/gm.cpp',
     36             '../gm/gm_expectations.cpp',
     37 
     38             '../src/pipe/utils/SamplePipeControllers.cpp',
     39             '../src/utils/debugger/SkDebugCanvas.cpp',
     40             '../src/utils/debugger/SkDrawCommand.cpp',
     41             '../src/utils/debugger/SkObjectParser.cpp',
     42         ],
     43         'dependencies': [
     44             'skia_lib.gyp:skia_lib',
     45             'flags.gyp:flags',
     46             'jsoncpp.gyp:jsoncpp',
     47             'gputest.gyp:skgputest',
     48         ],
     49     }]
     50 }
     51