3e5622764a
Prevents some PRESUBMIT errors. TBR=mtklein@google.com Review URL: https://codereview.chromium.org/1035523003
45 lines
1007 B
Python
45 lines
1007 B
Python
# Copyright 2015 Google Inc.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
# 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',
|
|
],
|
|
}
|
|
},
|
|
],
|
|
}
|