aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/gm.gyp
blob: cebd26f9d9b4da6a413fd20f72f9138dd5297ebc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# GYP file to build the "gm" (golden master) executable.
{
  'includes': [
    'apptype_console.gypi',
    'common.gypi',
  ],
  'targets': [
    {
      'target_name': 'gm',
      'type': 'executable',
      'sources': [
        '../gm/bitmapfilters.cpp',
        '../gm/bitmapscroll.cpp',
        '../gm/blurs.cpp',
        '../gm/complexclip.cpp',
        '../gm/complexclip2.cpp',
        '../gm/filltypes.cpp',
        '../gm/gmmain.cpp',
        '../gm/gradients.cpp',
        '../gm/lcdtext.cpp',
        '../gm/nocolorbleed.cpp',
        '../gm/pathfill.cpp',
        '../gm/points.cpp',
        '../gm/poly2poly.cpp',
        '../gm/shadertext.cpp',
        '../gm/shadows.cpp',
        '../gm/shapes.cpp',
        '../gm/strokerects.cpp',
        '../gm/strokes.cpp',
        '../gm/texdata.cpp',
        '../gm/tilemodes.cpp',
        '../gm/tinybitmap.cpp',
        '../gm/xfermodes.cpp',
      ],
      'dependencies': [
        'core.gyp:core',
        'effects.gyp:effects',
        'gpu.gyp:gr',
        'gpu.gyp:skgr',
        'images.gyp:images',
        'pdf.gyp:pdf',
        'utils.gyp:utils',
      ],
    },
  ],
}

# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: