| Index: test/fuzzer/fuzzer.gyp
|
| diff --git a/test/fuzzer/fuzzer.gyp b/test/fuzzer/fuzzer.gyp
|
| index 9f40929d0d8597c02cdae81b71aff47ce2a3354d..ae8d39831ded6e94ff2195d81c8f0a096b7903c5 100644
|
| --- a/test/fuzzer/fuzzer.gyp
|
| +++ b/test/fuzzer/fuzzer.gyp
|
| @@ -51,7 +51,7 @@
|
| 'target_name': 'parser_fuzzer_lib',
|
| 'type': 'static_library',
|
| 'dependencies': [
|
| - 'fuzzer_support_nocomponent',
|
| + 'fuzzer_support',
|
| ],
|
| 'include_dirs': [
|
| '../..',
|
| @@ -59,11 +59,6 @@
|
| 'sources': [ ### gcmole(all) ###
|
| 'parser.cc',
|
| ],
|
| - 'conditions': [
|
| - ['component=="shared_library"', {
|
| - 'defines': [ 'BUILDING_V8_SHARED', ]
|
| - }],
|
| - ],
|
| },
|
| {
|
| 'target_name': 'v8_simple_regexp_fuzzer',
|
| @@ -402,31 +397,6 @@
|
| 'fuzzer-support.h',
|
| ],
|
| },
|
| - {
|
| - 'target_name': 'fuzzer_support_nocomponent',
|
| - 'type': 'static_library',
|
| - 'dependencies': [
|
| - '../../src/v8.gyp:v8_libbase',
|
| - '../../src/v8.gyp:v8_libplatform',
|
| - ],
|
| - '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.
|
| - 'dependencies': ['../../src/v8.gyp:v8_maybe_snapshot'],
|
| - 'defines': [ 'BUILDING_V8_SHARED', ]
|
| - }, {
|
| - 'dependencies': ['../../src/v8.gyp:v8'],
|
| - }],
|
| - ],
|
| - },
|
| ],
|
| 'conditions': [
|
| ['test_isolation_mode != "noop"', {
|
|
|