2016-01-26 10:38:37 +00:00
|
|
|
# Copyright 2016 the V8 project authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
|
|
|
{
|
|
|
|
'variables': {
|
|
|
|
'v8_code': 1,
|
|
|
|
},
|
2016-04-29 10:08:53 +00:00
|
|
|
'includes': ['../../gypfiles/toolchain.gypi', '../../gypfiles/features.gypi'],
|
2016-01-26 10:38:37 +00:00
|
|
|
'targets': [
|
2016-02-02 11:28:47 +00:00
|
|
|
{
|
2016-06-03 13:09:52 +00:00
|
|
|
'target_name': 'v8_simple_json_fuzzer',
|
2016-02-02 11:28:47 +00:00
|
|
|
'type': 'executable',
|
|
|
|
'dependencies': [
|
|
|
|
'json_fuzzer_lib',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'../..',
|
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'fuzzer.cc',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'target_name': 'json_fuzzer_lib',
|
|
|
|
'type': 'static_library',
|
|
|
|
'dependencies': [
|
|
|
|
'fuzzer_support',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'../..',
|
|
|
|
],
|
|
|
|
'sources': [ ### gcmole(all) ###
|
|
|
|
'json.cc',
|
|
|
|
],
|
|
|
|
},
|
2016-01-26 10:38:37 +00:00
|
|
|
{
|
2016-06-03 13:09:52 +00:00
|
|
|
'target_name': 'v8_simple_parser_fuzzer',
|
2016-01-26 10:38:37 +00:00
|
|
|
'type': 'executable',
|
|
|
|
'dependencies': [
|
|
|
|
'parser_fuzzer_lib',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'../..',
|
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'fuzzer.cc',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'target_name': 'parser_fuzzer_lib',
|
|
|
|
'type': 'static_library',
|
|
|
|
'dependencies': [
|
|
|
|
'fuzzer_support',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'../..',
|
|
|
|
],
|
|
|
|
'sources': [ ### gcmole(all) ###
|
|
|
|
'parser.cc',
|
|
|
|
],
|
|
|
|
},
|
2016-02-01 14:00:12 +00:00
|
|
|
{
|
2016-06-03 13:09:52 +00:00
|
|
|
'target_name': 'v8_simple_regexp_fuzzer',
|
2016-02-01 14:00:12 +00:00
|
|
|
'type': 'executable',
|
|
|
|
'dependencies': [
|
|
|
|
'regexp_fuzzer_lib',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'../..',
|
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'fuzzer.cc',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'target_name': 'regexp_fuzzer_lib',
|
|
|
|
'type': 'static_library',
|
|
|
|
'dependencies': [
|
|
|
|
'fuzzer_support',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'../..',
|
|
|
|
],
|
|
|
|
'sources': [ ### gcmole(all) ###
|
|
|
|
'regexp.cc',
|
|
|
|
],
|
|
|
|
},
|
2016-03-02 00:53:19 +00:00
|
|
|
{
|
2016-06-03 13:09:52 +00:00
|
|
|
'target_name': 'v8_simple_wasm_fuzzer',
|
2016-03-02 00:53:19 +00:00
|
|
|
'type': 'executable',
|
|
|
|
'dependencies': [
|
|
|
|
'wasm_fuzzer_lib',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'../..',
|
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'fuzzer.cc',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'target_name': 'wasm_fuzzer_lib',
|
|
|
|
'type': 'static_library',
|
|
|
|
'dependencies': [
|
|
|
|
'fuzzer_support',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'../..',
|
|
|
|
],
|
|
|
|
'sources': [ ### gcmole(all) ###
|
|
|
|
'wasm.cc',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2016-06-03 13:09:52 +00:00
|
|
|
'target_name': 'v8_simple_wasm_asmjs_fuzzer',
|
2016-03-02 00:53:19 +00:00
|
|
|
'type': 'executable',
|
|
|
|
'dependencies': [
|
|
|
|
'wasm_asmjs_fuzzer_lib',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'../..',
|
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'fuzzer.cc',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'target_name': 'wasm_asmjs_fuzzer_lib',
|
|
|
|
'type': 'static_library',
|
|
|
|
'dependencies': [
|
|
|
|
'fuzzer_support',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'../..',
|
|
|
|
],
|
|
|
|
'sources': [ ### gcmole(all) ###
|
|
|
|
'wasm-asmjs.cc',
|
|
|
|
],
|
|
|
|
},
|
2016-01-26 10:38:37 +00:00
|
|
|
{
|
|
|
|
'target_name': 'fuzzer_support',
|
|
|
|
'type': 'static_library',
|
|
|
|
'dependencies': [
|
2016-04-25 12:19:32 +00:00
|
|
|
'../../src/v8.gyp:v8_libplatform',
|
2016-01-26 10:38:37 +00:00
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'../..',
|
|
|
|
],
|
|
|
|
'sources': [ ### gcmole(all) ###
|
|
|
|
'fuzzer-support.cc',
|
|
|
|
'fuzzer-support.h',
|
|
|
|
],
|
|
|
|
'conditions': [
|
|
|
|
['component=="shared_library"', {
|
|
|
|
# fuzzers can't be built against a shared library, so we need to
|
|
|
|
# depend on the underlying static target in that case.
|
2016-04-25 12:19:32 +00:00
|
|
|
'dependencies': ['../../src/v8.gyp:v8_maybe_snapshot'],
|
2016-01-26 10:38:37 +00:00
|
|
|
}, {
|
2016-04-25 12:19:32 +00:00
|
|
|
'dependencies': ['../../src/v8.gyp:v8'],
|
2016-01-26 10:38:37 +00:00
|
|
|
}],
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'conditions': [
|
|
|
|
['test_isolation_mode != "noop"', {
|
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
'target_name': 'fuzzer_run',
|
|
|
|
'type': 'none',
|
|
|
|
'dependencies': [
|
2016-06-03 13:09:52 +00:00
|
|
|
'v8_simple_json_fuzzer',
|
|
|
|
'v8_simple_parser_fuzzer',
|
|
|
|
'v8_simple_regexp_fuzzer',
|
|
|
|
'v8_simple_wasm_fuzzer',
|
|
|
|
'v8_simple_wasm_asmjs_fuzzer',
|
2016-01-26 10:38:37 +00:00
|
|
|
],
|
|
|
|
'includes': [
|
2016-04-29 10:08:53 +00:00
|
|
|
'../../gypfiles/isolate.gypi',
|
2016-01-26 10:38:37 +00:00
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'fuzzer.isolate',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
}
|