594dd3cd78
include/core/SkTypes.h - address unsigned warning include/core/SkInstCnt.h src/core/SkInstCnt.cpp gyp/common.gypi - always define SK_ENABLE_INST_COUNT for debug builds src/views/mac/SkNSView.mm - only call glClear if there is a GL context src/ports/SkImageDecoder_CG.cpp - fix iOS hack by using proper include gyp/opts.gyp - exclude more ARM files from iOS for now (see issue 900) gyp/common_conditions.gypi - add release, more ios specific common settings gyp/bench.gyp - add iOS condition gyp/SampleApp.gyp - remove precompiled header, hardcoded SDK path - add more frameworks gyp/debugger.gyp - fix syntax error - add iOS/Android condition gyp/core.gyp - remove hardcoded SDK path, add more frameworks gyp/common_variables.gypi - add ios SDK path - add ios SDK version gyp/iOSSampleApp.gyp - remove obsolete project gyp/zlib.gyp - add ios library path Review URL: https://codereview.appspot.com/6551070 git-svn-id: http://skia.googlecode.com/svn/trunk@5649 2bbb7eff-a529-9590-31e7-b0007b416f81
95 lines
2.4 KiB
Python
95 lines
2.4 KiB
Python
# Copyright 2011 The Android Open Source Project
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
#
|
|
# This file is automatically included by gyp_skia when building any target.
|
|
|
|
{
|
|
'includes': [
|
|
'common_variables.gypi',
|
|
],
|
|
|
|
'target_defaults': {
|
|
'defines': [
|
|
'SK_GAMMA_SRGB',
|
|
'SK_GAMMA_APPLY_TO_A8',
|
|
],
|
|
|
|
# Validate the 'skia_os' setting against 'OS', because only certain
|
|
# combinations work. You should only override 'skia_os' for certain
|
|
# situations, like building for iOS on a Mac.
|
|
'variables': {
|
|
'conditions': [
|
|
['skia_os != OS and not (skia_os == "ios" and OS == "mac")',
|
|
{'error': '<!(Cannot build with skia_os=<(skia_os) on OS=<(OS))'}],
|
|
['skia_mesa and skia_os not in ["mac", "linux"]',
|
|
{'error': '<!(skia_mesa=1 only supported with skia_os="mac" or "linux".)'}],
|
|
['skia_angle and not skia_os == "win"',
|
|
{'error': '<!(skia_angle=1 only supported with skia_os="win".)'
|
|
}],
|
|
['skia_arch_width != 32 and skia_arch_width != 64',
|
|
{'error': '<!(skia_arch_width can only be 32 or 64 bits not <(skia_arch_width) bits)'
|
|
}],
|
|
],
|
|
},
|
|
'includes': [
|
|
'common_conditions.gypi',
|
|
],
|
|
'conditions': [
|
|
[ 'skia_scalar == "float"',
|
|
{
|
|
'defines': [
|
|
'SK_SCALAR_IS_FLOAT',
|
|
'SK_CAN_USE_FLOAT',
|
|
],
|
|
}, { # else, skia_scalar != "float"
|
|
'defines': [
|
|
'SK_SCALAR_IS_FIXED',
|
|
'SK_CAN_USE_FLOAT', # we can still use floats along the way
|
|
],
|
|
}
|
|
],
|
|
[ 'skia_mesa', {
|
|
'defines': [
|
|
'SK_MESA',
|
|
],
|
|
'direct_dependent_settings': {
|
|
'defines': [
|
|
'SK_MESA',
|
|
],
|
|
},
|
|
}],
|
|
[ 'skia_angle', {
|
|
'defines': [
|
|
'SK_ANGLE',
|
|
],
|
|
'direct_dependent_settings': {
|
|
'defines': [
|
|
'SK_ANGLE',
|
|
],
|
|
},
|
|
}],
|
|
],
|
|
'configurations': {
|
|
'Debug': {
|
|
'defines': [
|
|
'SK_DEBUG',
|
|
'GR_DEBUG=1',
|
|
],
|
|
},
|
|
'Release': {
|
|
'defines': [
|
|
'SK_RELEASE',
|
|
'GR_RELEASE=1',
|
|
],
|
|
},
|
|
},
|
|
}, # end 'target_defaults'
|
|
}
|
|
# Local Variables:
|
|
# tab-width:2
|
|
# indent-tabs-mode:nil
|
|
# End:
|
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|