blob: 939b32ac03aedc478e499911ab960dafcbe8fbfd [file] [log] [blame]
epoger@google.comccdbd2c2011-06-02 14:38:23 +00001# GYP file to build various tools.
2#
3# To build on Linux:
4# ./gyp_skia tools.gyp && make tools
5#
6# Building on other platforms not tested yet.
7#
8{
9 'includes': [
10 'apptype_console.gypi',
11 'target_defaults.gypi',
12 ],
13 'targets': [
14 {
15 # Build all executable targets defined below.
16 'target_name': 'tools',
17 'type': 'none',
18 'dependencies': [
19 'skdiff',
20 'skhello',
21 'skimage',
22 ],
23 },
24 {
25 'target_name': 'skdiff',
26 'type': 'executable',
27 'sources': [
28 '../tools/skdiff_main.cpp',
29 ],
30 'dependencies': [
31 'core.gyp:core',
32 'images.gyp:images',
33 'utils.gyp:utils',
34 ],
35 },
36 {
37 'target_name': 'skhello',
38 'type': 'executable',
39 'sources': [
40 '../tools/skhello.cpp',
41 ],
42 'dependencies': [
43 'core.gyp:core',
44 'images.gyp:images',
45 'utils.gyp:utils',
46 ],
47 },
48 {
49 'target_name': 'skimage',
50 'type': 'executable',
51 'sources': [
52 '../tools/skimage_main.cpp',
53 ],
54 'dependencies': [
55 'core.gyp:core',
56 'images.gyp:images',
57 'utils.gyp:utils',
58 ],
59 },
60 ],
61}
62
63# Local Variables:
64# tab-width:2
65# indent-tabs-mode:nil
66# End:
67# vim: set expandtab tabstop=2 shiftwidth=2: