Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(502)

Unified Diff: test/fuzzer/fuzzer.gyp

Issue 2417703003: parser fuzzer and parser shell should also work in component builds (Closed)
Patch Set: updates Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« src/parsing/parser.h ('K') | « src/parsing/parser.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"', {
« src/parsing/parser.h ('K') | « src/parsing/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698