gm.gyp revision 1cab2921ab279367f8206cdadc9259d12e603548
1# GYP file to build the "gm" (golden master) executable.
2{
3  'includes': [
4    'apptype_console.gypi',
5    'common.gypi',
6  ],
7  'targets': [
8    {
9      'target_name': 'gm',
10      'type': 'executable',
11      'includes': [
12        'gmslides.gypi',
13      ],
14      'sources': [
15        '../gm/gm.cpp',
16        '../gm/gmmain.cpp',
17      ],
18      'dependencies': [
19        'core.gyp:core',
20        'effects.gyp:effects',
21        'gpu.gyp:gr',
22        'gpu.gyp:skgr',
23        'images.gyp:images',
24        'ports.gyp:ports',
25        'pdf.gyp:pdf',
26        'utils.gyp:utils',        
27      ],
28      #mac does not like empty dependency.
29      'conditions': [
30        [ 'skia_os == "win"', {
31          'dependencies': [
32            'xps.gyp:xps',
33          ],
34        }],
35      ],  
36    },
37  ],
38}
39
40# Local Variables:
41# tab-width:2
42# indent-tabs-mode:nil
43# End:
44# vim: set expandtab tabstop=2 shiftwidth=2:
45