9c875d34ff
split out of https://codereview.appspot.com/6651064/ ('gyp: generate "everything" and "most" targets instead of "all"') tests: "make most" now works, "make" now calls "make most" Review URL: https://codereview.appspot.com/6740045 git-svn-id: http://skia.googlecode.com/svn/trunk@5999 2bbb7eff-a529-9590-31e7-b0007b416f81
49 lines
1.3 KiB
Python
49 lines
1.3 KiB
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 http://code.google.com/p/skia/wiki/DocRoot
|
|
#
|
|
{
|
|
'targets': [
|
|
{
|
|
# Use this target to build everything provided by Skia.
|
|
'target_name': 'all',
|
|
'type': 'none',
|
|
'dependencies': [
|
|
# The minimal set of static libraries for basic Skia functionality.
|
|
'gyp/skia_base_libs.gyp:skia_base_libs',
|
|
|
|
'gyp/bench.gyp:bench',
|
|
'gyp/gm.gyp:gm',
|
|
'gyp/most.gyp:most',
|
|
'gyp/SampleApp.gyp:SampleApp',
|
|
'gyp/tests.gyp:tests',
|
|
'gyp/tools.gyp:tools',
|
|
],
|
|
'conditions': [
|
|
['skia_os == "android"', {
|
|
'dependencies': [
|
|
'gyp/android_system.gyp:SkiaAndroidApp',
|
|
],
|
|
}],
|
|
|
|
# The debugger is not supported for iOS, Android and 32-bit Mac builds.
|
|
['skia_os != "ios" and skia_os != "android" and (skia_os != "mac" or skia_arch_width == 64)', {
|
|
'dependencies': [ 'gyp/debugger.gyp:debugger' ],
|
|
}],
|
|
],
|
|
},
|
|
],
|
|
}
|
|
|
|
# Local Variables:
|
|
# tab-width:2
|
|
# indent-tabs-mode:nil
|
|
# End:
|
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|