91d1d621de
Review URL: https://codereview.chromium.org/933523007
27 lines
523 B
Python
27 lines
523 B
Python
# Target for including SkFlate.
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'skflate',
|
|
'type': 'static_library',
|
|
'dependencies': [
|
|
'skia_lib.gyp:skia_lib',
|
|
],
|
|
'conditions': [
|
|
# When zlib is not availible on a system,
|
|
# SK_NO_FLATE will be defined.
|
|
[ 'skia_os != "win"',
|
|
{
|
|
'dependencies': [
|
|
'zlib.gyp:zlib',
|
|
],
|
|
}
|
|
],
|
|
],
|
|
'sources': [
|
|
'../src/core/SkFlate.cpp',
|
|
],
|
|
},
|
|
],
|
|
}
|