blob: 16577e98cb6412606d14abad1536bb2b8da49040 [file] [log] [blame]
epoger@google.comccdbd2c2011-06-02 14:38:23 +00001# GYP file to build the "gm" (golden master) executable.
epoger@google.comccdbd2c2011-06-02 14:38:23 +00002{
3 'includes': [
4 'apptype_console.gypi',
epoger@google.com5351b372011-07-01 17:16:26 +00005 'common.gypi',
epoger@google.comccdbd2c2011-06-02 14:38:23 +00006 ],
7 'targets': [
8 {
9 'target_name': 'gm',
10 'type': 'executable',
bsalomon@google.com48dd1a22011-10-31 14:18:20 +000011 'includes': [
12 'gmslides.gypi',
13 ],
epoger@google.comccdbd2c2011-06-02 14:38:23 +000014 'sources': [
bsalomon@google.com48dd1a22011-10-31 14:18:20 +000015 '../gm/gm.cpp',
reed@google.com30db5992011-08-29 17:41:02 +000016 '../gm/gmmain.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000017 ],
18 'dependencies': [
19 'core.gyp:core',
20 'effects.gyp:effects',
21 'gpu.gyp:gr',
22 'gpu.gyp:skgr',
23 'images.gyp:images',
epoger@google.comdcab3a12011-06-24 19:09:09 +000024 'pdf.gyp:pdf',
bungeman@google.com0f1541f2011-10-10 13:47:06 +000025 'utils.gyp:utils',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000026 ],
bungeman@google.com0f1541f2011-10-10 13:47:06 +000027 #mac does not like empty dependency.
28 'conditions': [
29 [ 'skia_os == "win"', {
30 'dependencies': [
31 'xps.gyp:xps',
32 ],
33 }],
34 ],
epoger@google.comccdbd2c2011-06-02 14:38:23 +000035 },
36 ],
37}
38
39# Local Variables:
40# tab-width:2
41# indent-tabs-mode:nil
42# End:
43# vim: set expandtab tabstop=2 shiftwidth=2: