mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-10 02:18:57 +00:00
66 lines
1.6 KiB
Python
66 lines
1.6 KiB
Python
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
{
|
|
'includes': [
|
|
'../coreconf/config.gypi',
|
|
'../cmd/platlibs.gypi'
|
|
],
|
|
'targets': [
|
|
{
|
|
'target_name': 'libFuzzer',
|
|
'type': 'static_library',
|
|
'sources': [
|
|
'libFuzzer/FuzzerCrossOver.cpp',
|
|
'libFuzzer/FuzzerDriver.cpp',
|
|
'libFuzzer/FuzzerExtFunctionsDlsym.cpp',
|
|
'libFuzzer/FuzzerExtFunctionsWeak.cpp',
|
|
'libFuzzer/FuzzerIO.cpp',
|
|
'libFuzzer/FuzzerLoop.cpp',
|
|
'libFuzzer/FuzzerMutate.cpp',
|
|
'libFuzzer/FuzzerSHA1.cpp',
|
|
'libFuzzer/FuzzerTracePC.cpp',
|
|
'libFuzzer/FuzzerTraceState.cpp',
|
|
'libFuzzer/FuzzerUtil.cpp',
|
|
'libFuzzer/FuzzerUtilDarwin.cpp',
|
|
'libFuzzer/FuzzerUtilLinux.cpp',
|
|
],
|
|
'cflags': [
|
|
'-O2',
|
|
],
|
|
'cflags/': [
|
|
['exclude', '-fsanitize='],
|
|
['exclude', '-fsanitize-'],
|
|
],
|
|
'xcode_settings': {
|
|
'GCC_OPTIMIZATION_LEVEL': '2', # -O2
|
|
'OTHER_CFLAGS/': [
|
|
['exclude', '-fsanitize='],
|
|
['exclude', '-fsanitize-'],
|
|
],
|
|
},
|
|
},
|
|
{
|
|
'target_name': 'nssfuzz',
|
|
'type': 'executable',
|
|
'sources': [
|
|
'nssfuzz.cc',
|
|
'pkcs8_target.cc',
|
|
'quickder_targets.cc',
|
|
],
|
|
'dependencies': [
|
|
'<(DEPTH)/exports.gyp:nss_exports',
|
|
'libFuzzer',
|
|
]
|
|
}
|
|
],
|
|
'target_defaults': {
|
|
'include_dirs': [
|
|
'libFuzzer',
|
|
],
|
|
},
|
|
'variables': {
|
|
'module': 'nss',
|
|
}
|
|
}
|