2011-07-28 14:24:55 +00:00
|
|
|
# Copyright 2011 The Android Open Source Project
|
2011-04-11 15:59:47 +00:00
|
|
|
#
|
2011-07-28 14:24:55 +00:00
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
2012-03-16 13:52:49 +00:00
|
|
|
#
|
|
|
|
# This file is automatically included by gyp_skia when building any target.
|
|
|
|
|
2011-04-11 15:59:47 +00:00
|
|
|
{
|
2012-03-16 18:28:24 +00:00
|
|
|
'includes': [
|
|
|
|
'common_variables.gypi',
|
|
|
|
],
|
2012-03-16 13:52:49 +00:00
|
|
|
|
2011-07-01 17:16:26 +00:00
|
|
|
'target_defaults': {
|
2012-07-30 20:40:50 +00:00
|
|
|
'defines': [
|
|
|
|
'SK_GAMMA_SRGB',
|
|
|
|
'SK_GAMMA_APPLY_TO_A8',
|
|
|
|
],
|
2011-07-01 17:16:26 +00:00
|
|
|
|
2011-07-01 20:20:07 +00:00
|
|
|
# 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.
|
2011-07-01 17:16:26 +00:00
|
|
|
'variables': {
|
2011-07-01 20:20:07 +00:00
|
|
|
'conditions': [
|
2012-11-01 17:43:44 +00:00
|
|
|
[ 'skia_os != OS and not ((skia_os == "ios" and OS == "mac") or \
|
2013-06-24 19:31:58 +00:00
|
|
|
(skia_os == "nacl" and OS == "linux") or \
|
|
|
|
(skia_os == "chromeos" and OS == "linux"))', {
|
2012-11-01 17:43:44 +00:00
|
|
|
'error': '<!(Cannot build with skia_os=<(skia_os) on OS=<(OS))',
|
2012-04-02 20:42:26 +00:00
|
|
|
}],
|
2012-11-01 17:43:44 +00:00
|
|
|
[ '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)',
|
|
|
|
}],
|
|
|
|
[ 'skia_os == "nacl" and OS != "linux"', {
|
|
|
|
'error': '<!(Skia NaCl build only currently supported on Linux.)',
|
2012-06-28 16:08:05 +00:00
|
|
|
}],
|
2013-06-11 15:52:19 +00:00
|
|
|
[ 'skia_os == "chromeos" and OS != "linux"', {
|
|
|
|
'error': '<!(Skia ChromeOS build is only supported on Linux.)',
|
|
|
|
}],
|
2011-07-01 20:20:07 +00:00
|
|
|
],
|
2011-07-01 17:16:26 +00:00
|
|
|
},
|
2011-09-15 14:24:33 +00:00
|
|
|
'includes': [
|
2012-03-16 18:28:24 +00:00
|
|
|
'common_conditions.gypi',
|
2011-09-15 14:24:33 +00:00
|
|
|
],
|
|
|
|
'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
|
|
|
|
],
|
|
|
|
}
|
|
|
|
],
|
2011-10-19 20:43:20 +00:00
|
|
|
[ 'skia_mesa', {
|
|
|
|
'defines': [
|
|
|
|
'SK_MESA',
|
|
|
|
],
|
|
|
|
'direct_dependent_settings': {
|
|
|
|
'defines': [
|
|
|
|
'SK_MESA',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}],
|
2012-04-02 20:42:26 +00:00
|
|
|
[ 'skia_angle', {
|
|
|
|
'defines': [
|
|
|
|
'SK_ANGLE',
|
|
|
|
],
|
|
|
|
'direct_dependent_settings': {
|
|
|
|
'defines': [
|
|
|
|
'SK_ANGLE',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}],
|
2013-03-08 18:00:16 +00:00
|
|
|
[ 'skia_win_debuggers_path and skia_os == "win"',
|
|
|
|
{
|
|
|
|
'defines': [
|
|
|
|
'SK_USE_CDB',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
2011-09-15 14:24:33 +00:00
|
|
|
],
|
2011-07-01 17:16:26 +00:00
|
|
|
'configurations': {
|
|
|
|
'Debug': {
|
|
|
|
'defines': [
|
|
|
|
'SK_DEBUG',
|
|
|
|
'GR_DEBUG=1',
|
2013-01-14 18:49:19 +00:00
|
|
|
'SK_DEVELOPER=1',
|
2011-07-01 17:16:26 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
'Release': {
|
|
|
|
'defines': [
|
|
|
|
'SK_RELEASE',
|
|
|
|
'GR_RELEASE=1',
|
|
|
|
],
|
|
|
|
},
|
2013-01-14 18:49:19 +00:00
|
|
|
'Release_Developer': {
|
|
|
|
'inherit_from': ['Release'],
|
|
|
|
'defines': [
|
|
|
|
'SK_DEVELOPER=1',
|
|
|
|
],
|
|
|
|
},
|
2011-07-01 17:16:26 +00:00
|
|
|
},
|
|
|
|
}, # end 'target_defaults'
|
2011-04-11 15:59:47 +00:00
|
|
|
}
|
|
|
|
# Local Variables:
|
|
|
|
# tab-width:2
|
|
|
|
# indent-tabs-mode:nil
|
|
|
|
# End:
|
|
|
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|