2011-06-07 14:48:41 +00:00
|
|
|
# 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 http://code.google.com/p/skia/wiki/DocRoot
|
|
|
|
#
|
|
|
|
{
|
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
# Use this target to build everything provided by Skia.
|
|
|
|
'target_name': 'all',
|
|
|
|
'type': 'none',
|
|
|
|
'dependencies': [
|
|
|
|
'gyp/bench.gyp:bench',
|
|
|
|
'gyp/gm.gyp:gm',
|
|
|
|
'gyp/SampleApp.gyp:SampleApp',
|
|
|
|
'gyp/tests.gyp:tests',
|
|
|
|
'gyp/tools.gyp:tools',
|
2012-06-29 18:26:27 +00:00
|
|
|
'gyp/debugger.gyp:debugger',
|
2011-06-07 14:48:41 +00:00
|
|
|
],
|
2012-06-27 19:04:39 +00:00
|
|
|
'conditions': [
|
2012-07-18 14:59:54 +00:00
|
|
|
['skia_os == "android" and android_make_apk == 1', {
|
2012-06-27 19:04:39 +00:00
|
|
|
'dependencies': [
|
|
|
|
'gyp/android_system.gyp:SkiaAndroidApp',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
2011-06-07 14:48:41 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
# Local Variables:
|
|
|
|
# tab-width:2
|
|
|
|
# indent-tabs-mode:nil
|
|
|
|
# End:
|
|
|
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|