d9ba9a05d6
This name is more specific to what it actually does. Also move the code into tools/flags, to (slightly) better organize the massive tools folder. Update the programs that use it to use the new names. No functionality changes. BUG=https://code.google.com/p/skia/issues/detail?id=1173 Review URL: https://codereview.chromium.org/12440067 git-svn-id: http://skia.googlecode.com/svn/trunk@8304 2bbb7eff-a529-9590-31e7-b0007b416f81
30 lines
579 B
Python
30 lines
579 B
Python
# GYP file to build flag parser
|
|
#
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'flags',
|
|
'type': 'static_library',
|
|
'sources': [
|
|
'../tools/flags/SkCommandLineFlags.h',
|
|
'../tools/flags/SkCommandLineFlags.cpp',
|
|
],
|
|
'dependencies': [
|
|
'skia_base_libs.gyp:skia_base_libs',
|
|
'core.gyp:core',
|
|
],
|
|
'direct_dependent_settings': {
|
|
'include_dirs': [
|
|
'../tools/flags',
|
|
],
|
|
}
|
|
},
|
|
],
|
|
}
|
|
|
|
# Local Variables:
|
|
# tab-width:2
|
|
# indent-tabs-mode:nil
|
|
# End:
|
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|