1c4d5784f9
"flags" target does it by direct_dependent_settings which exports the include_dirs to targets that depend on it. Along the way fixed the indentation of experimental.gyp and v8.gyp. BUG=None TEST=make all R=mtklein@google.com Author: tfarina@chromium.org Review URL: https://codereview.chromium.org/343283002
23 lines
433 B
Python
23 lines
433 B
Python
# GYP file to build flag parser
|
|
#
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'flags',
|
|
'type': 'static_library',
|
|
'sources': [
|
|
'../tools/flags/SkCommandLineFlags.cpp',
|
|
'../tools/flags/SkCommandLineFlags.h',
|
|
],
|
|
'dependencies': [
|
|
'skia_lib.gyp:skia_lib',
|
|
],
|
|
'direct_dependent_settings': {
|
|
'include_dirs': [
|
|
'../tools/flags',
|
|
],
|
|
}
|
|
},
|
|
],
|
|
}
|