simplify piex.gyp
Was just starting to dig into skia:4903, and decided to start by learning piex. It's tiny. Why such GYP complexity to build 5 files? BUG=skia:4903 GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1681533002 Review URL: https://codereview.chromium.org/1681533002
This commit is contained in:
parent
629f25a7ef
commit
b9c61f7a6e
75
gyp/piex.gyp
75
gyp/piex.gyp
@ -28,76 +28,19 @@
|
|||||||
'target_name': 'piex',
|
'target_name': 'piex',
|
||||||
'type': 'static_library',
|
'type': 'static_library',
|
||||||
'sources': [
|
'sources': [
|
||||||
|
'../third_party/externals/piex/src/binary_parse/cached_paged_byte_array.cc',
|
||||||
|
'../third_party/externals/piex/src/binary_parse/range_checked_byte_ptr.cc',
|
||||||
|
'../third_party/externals/piex/src/image_type_recognition/image_type_recognition_lite.cc',
|
||||||
'../third_party/externals/piex/src/piex.cc',
|
'../third_party/externals/piex/src/piex.cc',
|
||||||
|
'../third_party/externals/piex/src/tiff_directory/tiff_directory.cc',
|
||||||
'../third_party/externals/piex/src/tiff_parser.cc',
|
'../third_party/externals/piex/src/tiff_parser.cc',
|
||||||
],
|
],
|
||||||
'variables': {
|
'include_dirs': [ '../third_party/externals/piex' ],
|
||||||
'headers': [
|
|
||||||
'../third_party/externals/piex/src/piex.h',
|
|
||||||
'../third_party/externals/piex/src/piex_types.h',
|
|
||||||
'../third_party/externals/piex/src/tiff_parser.h',
|
|
||||||
],
|
|
||||||
},
|
|
||||||
'include_dirs': ['../third_party/externals/piex'],
|
|
||||||
'cflags': [
|
|
||||||
'-Wsign-compare',
|
|
||||||
'-w',
|
|
||||||
],
|
|
||||||
'msvs_settings': {
|
|
||||||
'VCCLCompilerTool': {
|
|
||||||
'WarningLevel': '0',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'xcode_settings': {
|
|
||||||
'WARNING_CFLAGS': ['-w'],
|
|
||||||
},
|
|
||||||
'dependencies': [
|
|
||||||
'binary_parse',
|
|
||||||
'image_type_recognition',
|
|
||||||
'tiff_directory',
|
|
||||||
],
|
|
||||||
'direct_dependent_settings': {
|
'direct_dependent_settings': {
|
||||||
'include_dirs': [
|
'include_dirs': [ '../third_party/externals/piex' ],
|
||||||
'../third_party/externals/piex',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
}, {
|
'cflags': [ '-w' ],
|
||||||
'target_name': 'binary_parse',
|
'msvs_settings': { 'VCCLCompilerTool': { 'WarningLevel': '0' } },
|
||||||
'type': 'static_library',
|
'xcode_settings': { 'WARNING_CFLAGS': ['-w'] },
|
||||||
'sources': [
|
|
||||||
'../third_party/externals/piex/src/binary_parse/cached_paged_byte_array.cc',
|
|
||||||
'../third_party/externals/piex/src/binary_parse/range_checked_byte_ptr.cc',
|
|
||||||
],
|
|
||||||
'variables': {
|
|
||||||
'headers': [
|
|
||||||
'../third_party/externals/piex/src/binary_parse/cached_paged_byte_array.h',
|
|
||||||
'../third_party/externals/piex/src/binary_parse/range_checked_byte_ptr.h',
|
|
||||||
],
|
|
||||||
},
|
|
||||||
'include_dirs': ['../third_party/externals/piex'],
|
|
||||||
'cflags': ['-Wsign-compare'],
|
|
||||||
}, {
|
|
||||||
'target_name': 'image_type_recognition',
|
|
||||||
'type': 'static_library',
|
|
||||||
'sources': [
|
|
||||||
'../third_party/externals/piex/src/image_type_recognition/image_type_recognition_lite.cc',
|
|
||||||
],
|
|
||||||
'variables': {
|
|
||||||
'headers': ['../third_party/externals/piex/src/image_type_recognition/image_type_recognition_lite.h'],
|
|
||||||
},
|
|
||||||
'include_dirs': ['../third_party/externals/piex'],
|
|
||||||
'cflags': ['-Wsign-compare'],
|
|
||||||
'dependencies': ['binary_parse'],
|
|
||||||
}, {
|
|
||||||
'target_name': 'tiff_directory',
|
|
||||||
'type': 'static_library',
|
|
||||||
'sources': [
|
|
||||||
'../third_party/externals/piex/src/tiff_directory/tiff_directory.cc',
|
|
||||||
],
|
|
||||||
'variables': {
|
|
||||||
'headers': ['../third_party/externals/piex/src/tiff_directory/tiff_directory.h'],
|
|
||||||
},
|
|
||||||
'include_dirs': ['../third_party/externals/piex'],
|
|
||||||
'dependencies': ['binary_parse'],
|
|
||||||
}],
|
}],
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user