epoger@google.com | 51c078b | 2011-05-31 19:02:37 +0000 | [diff] [blame] | 1 | # Creates a Makefile that is capable of building all executable targets. |
epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 2 | # |
| 3 | # To build on Linux: |
| 4 | # ./gyp_skia && make all |
| 5 | # |
| 6 | # Building on other platforms not tested yet. |
| 7 | # |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 8 | |
| 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.com | 51c078b | 2011-05-31 19:02:37 +0000 | [diff] [blame] | 21 | { |
| 22 | 'targets': [ |
| 23 | { |
| 24 | 'target_name': 'all', |
| 25 | 'type': 'none', |
| 26 | 'dependencies': [ |
epoger@google.com | 161933b | 2011-06-03 17:21:21 +0000 | [diff] [blame] | 27 | 'bench.gyp:bench', |
epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 28 | 'gm.gyp:gm', |
| 29 | 'SampleApp.gyp:SampleApp', |
| 30 | 'tests.gyp:tests', |
| 31 | 'tools.gyp:tools', |
epoger@google.com | 51c078b | 2011-05-31 19:02:37 +0000 | [diff] [blame] | 32 | ], |
| 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: |