2011-05-31 19:02:37 +00:00
|
|
|
# Creates a Makefile that is capable of building all executable targets.
|
2011-06-02 14:38:23 +00:00
|
|
|
#
|
|
|
|
# To build on Linux:
|
|
|
|
# ./gyp_skia && make all
|
|
|
|
#
|
|
|
|
# Building on other platforms not tested yet.
|
|
|
|
#
|
2011-06-07 14:48:41 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# THIS IS DEPRECATED IN FAVOR OF trunk/skia.gyp !!!
|
|
|
|
# Questions? Contact epoger@google.com
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2011-05-31 19:02:37 +00:00
|
|
|
{
|
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
'target_name': 'all',
|
|
|
|
'type': 'none',
|
|
|
|
'dependencies': [
|
2011-06-03 17:21:21 +00:00
|
|
|
'bench.gyp:bench',
|
2011-06-02 14:38:23 +00:00
|
|
|
'gm.gyp:gm',
|
|
|
|
'SampleApp.gyp:SampleApp',
|
|
|
|
'tests.gyp:tests',
|
|
|
|
'tools.gyp:tools',
|
2011-05-31 19:02:37 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
# Local Variables:
|
|
|
|
# tab-width:2
|
|
|
|
# indent-tabs-mode:nil
|
|
|
|
# End:
|
|
|
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|