1e8e056afc
see http://codereview.appspot.com/4580043 1. Create a single public skia.gyp file that all outside projects (Chrome, Android, etc.) should depend on from now on. I haven't yet created targets suitable for those projects to use, but this is where we should add them. 2. Make gyp generate its Makefiles within out/ directory, rather than polluting directories under source control. 3. Modify trunk/Makefile to automatically run gyp_skia and then call the generated Makefile, to ease developer transition. git-svn-id: http://skia.googlecode.com/svn/trunk@1526 2bbb7eff-a529-9590-31e7-b0007b416f81
42 lines
649 B
Python
42 lines
649 B
Python
# Creates a Makefile that is capable of building all executable targets.
|
|
#
|
|
# To build on Linux:
|
|
# ./gyp_skia && make all
|
|
#
|
|
# Building on other platforms not tested yet.
|
|
#
|
|
|
|
#
|
|
#
|
|
#
|
|
#
|
|
#
|
|
# THIS IS DEPRECATED IN FAVOR OF trunk/skia.gyp !!!
|
|
# Questions? Contact epoger@google.com
|
|
#
|
|
#
|
|
#
|
|
#
|
|
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'all',
|
|
'type': 'none',
|
|
'dependencies': [
|
|
'bench.gyp:bench',
|
|
'gm.gyp:gm',
|
|
'SampleApp.gyp:SampleApp',
|
|
'tests.gyp:tests',
|
|
'tools.gyp:tools',
|
|
],
|
|
},
|
|
],
|
|
}
|
|
|
|
# Local Variables:
|
|
# tab-width:2
|
|
# indent-tabs-mode:nil
|
|
# End:
|
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|