{
'defines': [
'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)',
+ 'SK_SUPPORT_GPU=<(skia_gpu)',
+ 'SK_SUPPORT_OPENCL=<(skia_opencl)',
+ 'SK_DISTANCEFIELD_FONTSC=<(skia_distancefield_fonts)',
],
'conditions' : [
- [ 'skia_gpu == 1',
- {
- 'defines': [
- 'SK_SUPPORT_GPU=1',
- ],
- }, {
- 'defines': [
- 'SK_SUPPORT_GPU=0',
- ],
- },
- ],
- [ 'skia_opencl == 1',
- {
- 'defines': [
- 'SK_SUPPORT_OPENCL=1',
- ],
- }, {
- 'defines': [
- 'SK_SUPPORT_OPENCL=0',
- ],
- },
- ],
- [ 'skia_distancefield_fonts == 1',
- {
- 'defines': [
- 'SK_DISTANCEFIELD_FONTS=1',
- ],
- }, {
- 'defines': [
- 'SK_DISTANCEFIELD_FONTS=0',
- ],
- },
- ],
[ 'skia_os == "win"',
{
'defines': [
[ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "nacl", "chromeos", "android"]',
{
'cflags': [
+ '-g',
'-fno-exceptions',
'-fstrict-aliasing',
-
+
'-Wall',
'-Wextra',
'-Winit-self',
],
'configurations': {
'Coverage': {
- 'cflags': ['-g --coverage'],
+ 'cflags': ['--coverage'],
'ldflags': ['--coverage'],
},
'Debug': {
- 'cflags': ['-g']
},
'Release': {
'cflags': [
'-O<(skia_release_optimization_level)',
- '-g',
],
'defines': [ 'NDEBUG' ],
},