846872f75b
- forgot tool_main; - skip building where skia_gpu is false; - lots of scalar -> int warnings; - stray return on a void method; - stifle warning about a uint32_t cast to bool BUG= R=bungeman@google.com Author: mtklein@google.com Review URL: https://codereview.chromium.org/26468005 git-svn-id: http://skia.googlecode.com/svn/trunk@11821 2bbb7eff-a529-9590-31e7-b0007b416f81
38 lines
1.0 KiB
Python
38 lines
1.0 KiB
Python
# Build EVERYTHING provided by Skia.
|
|
# (Start with the "most" target, and then add targets that we intentionally
|
|
# left out of "most". See most.gyp for an explanation of which targets are
|
|
# left out of "most".)
|
|
#
|
|
# We used to call this the 'all' target, but in SOME cases that
|
|
# conflicted with an automatically-generated 'all' target.
|
|
# See https://code.google.com/p/skia/issues/detail?id=932
|
|
#
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'everything',
|
|
'type': 'none',
|
|
'dependencies': [
|
|
'most.gyp:most',
|
|
],
|
|
'conditions': [
|
|
['skia_os in ("ios", "android", "chromeos") or (skia_os == "mac" and skia_arch_width == 32)', {
|
|
# debugger is not supported on this platform
|
|
}, {
|
|
'dependencies': [ 'debugger.gyp:debugger' ],
|
|
}],
|
|
# DM assumes you've got a GPU.
|
|
['skia_gpu == 1', {
|
|
'dependencies': [ 'dm.gyp:dm' ],
|
|
}],
|
|
],
|
|
},
|
|
],
|
|
}
|
|
|
|
# Local Variables:
|
|
# tab-width:2
|
|
# indent-tabs-mode:nil
|
|
# End:
|
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|