blob: 50c1a80cc0727cf254e36c2037a414ba2711280e [file] [log] [blame]
# GYP file to build flag parser
#
{
'targets': [
{
'target_name': 'flags',
'type': 'static_library',
'include_dirs': [ '../src/core', ],
'sources': [
'../tools/flags/SkCommandLineFlags.cpp',
'../tools/flags/SkCommandLineFlags.h',
],
'dependencies': [
'skia_lib.gyp:skia_lib',
],
'direct_dependent_settings': {
'include_dirs': [
'../tools/flags',
],
}
},
{
'target_name': 'flags_common',
'type': 'static_library',
'sources': [
'../tools/flags/SkCommonFlags.cpp',
'../tools/flags/SkCommonFlags.h',
],
'dependencies': [
'skia_lib.gyp:skia_lib',
'flags.gyp:flags',
],
'direct_dependent_settings': {
'include_dirs': [
'../tools/flags',
],
}
},
],
}