blob: 37844bb22494a53a54a33999b8721a8be855c3ae [file] [log] [blame]
epoger@google.com51c078b2011-05-31 19:02:37 +00001# Creates a Makefile that is capable of building all executable targets.
epoger@google.comccdbd2c2011-06-02 14:38:23 +00002#
3# To build on Linux:
4# ./gyp_skia && make all
5#
6# Building on other platforms not tested yet.
7#
epoger@google.com1e8e0562011-06-07 14:48:41 +00008
9#
10#
11#
12#
13#
14# THIS IS DEPRECATED IN FAVOR OF trunk/skia.gyp !!!
15# Questions? Contact epoger@google.com
16#
17#
18#
19#
20
epoger@google.com51c078b2011-05-31 19:02:37 +000021{
22 'targets': [
23 {
24 'target_name': 'all',
25 'type': 'none',
26 'dependencies': [
epoger@google.com161933b2011-06-03 17:21:21 +000027 'bench.gyp:bench',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000028 'gm.gyp:gm',
29 'SampleApp.gyp:SampleApp',
30 'tests.gyp:tests',
31 'tools.gyp:tools',
epoger@google.com51c078b2011-05-31 19:02:37 +000032 ],
33 },
34 ],
35}
36
37# Local Variables:
38# tab-width:2
39# indent-tabs-mode:nil
40# End:
41# vim: set expandtab tabstop=2 shiftwidth=2: