6714ea4e4d
"make all" at the toplevel now chains to "make everything" BUG=http://code.google.com/p/skia/issues/detail?id=932 Review URL: https://codereview.appspot.com/6651064 git-svn-id: http://skia.googlecode.com/svn/trunk@6116 2bbb7eff-a529-9590-31e7-b0007b416f81
29 lines
634 B
Python
29 lines
634 B
Python
# Top-level gyp configuration for Skia.
|
|
#
|
|
# Projects that use Skia should depend on one or more of the targets
|
|
# defined here.
|
|
#
|
|
# More targets are defined within the gyp/ directory, but those are
|
|
# not intended for external use and may change without notice.
|
|
#
|
|
# Full documentation at https://sites.google.com/site/skiadocs/
|
|
#
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'alltargets',
|
|
'type': 'none',
|
|
'dependencies': [
|
|
'gyp/everything.gyp:everything',
|
|
'gyp/most.gyp:most',
|
|
],
|
|
},
|
|
],
|
|
}
|
|
|
|
# Local Variables:
|
|
# tab-width:2
|
|
# indent-tabs-mode:nil
|
|
# End:
|
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|