skia2/gyp/common_variables.gypi
djsollen@google.com 51c2fa7bb1 Fix for missing file from previous CL that broke the build.
The file defines skia_target_arch to '' for non-arm platforms.

git-svn-id: http://skia.googlecode.com/svn/trunk@2593 2bbb7eff-a529-9590-31e7-b0007b416f81
2011-11-03 13:13:27 +00:00

26 lines
713 B
Python

# variables used in both common.gypi and skia.gyp in chromium
#
{
# Define all variables, allowing for override in GYP_DEFINES.
#
# One such variable is 'skia_os', which we use instead of 'OS' throughout
# our gyp files. We set it automatically based on 'OS', but allow the
# user to override it via GYP_DEFINES if they like.
'variables': {
'skia_scalar%': 'float',
'skia_os%': '<(OS)',
'skia_mesa%': 0,
'skia_target_arch%': '',
},
'skia_scalar%': '<(skia_scalar)',
'skia_os': '<(skia_os)',
'skia_mesa': '<(skia_mesa)',
'skia_target_arch': '<(skia_target_arch)',
}
# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: