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

Unified Diff: test/fuzzer/fuzzer.gyp

Issue 2032363002: [gn] Add fuzzer targets. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixes Created 4 years, 6 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
« no previous file with comments | « BUILD.gn ('k') | test/fuzzer/fuzzer.isolate » ('j') | 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 b125ec2e7e31c52cf603bec23196fac88814327d..c7c4cb47ba29557902b9f27a17753bd0e91ad75a 100644
--- a/test/fuzzer/fuzzer.gyp
+++ b/test/fuzzer/fuzzer.gyp
@@ -9,7 +9,7 @@
'includes': ['../../gypfiles/toolchain.gypi', '../../gypfiles/features.gypi'],
'targets': [
{
- 'target_name': 'json_fuzzer',
+ 'target_name': 'v8_simple_json_fuzzer',
'type': 'executable',
'dependencies': [
'json_fuzzer_lib',
@@ -35,7 +35,7 @@
],
},
{
- 'target_name': 'parser_fuzzer',
+ 'target_name': 'v8_simple_parser_fuzzer',
'type': 'executable',
'dependencies': [
'parser_fuzzer_lib',
@@ -61,7 +61,7 @@
],
},
{
- 'target_name': 'regexp_fuzzer',
+ 'target_name': 'v8_simple_regexp_fuzzer',
'type': 'executable',
'dependencies': [
'regexp_fuzzer_lib',
@@ -87,7 +87,7 @@
],
},
{
- 'target_name': 'wasm_fuzzer',
+ 'target_name': 'v8_simple_wasm_fuzzer',
'type': 'executable',
'dependencies': [
'wasm_fuzzer_lib',
@@ -113,7 +113,7 @@
],
},
{
- 'target_name': 'wasm_asmjs_fuzzer',
+ 'target_name': 'v8_simple_wasm_asmjs_fuzzer',
'type': 'executable',
'dependencies': [
'wasm_asmjs_fuzzer_lib',
@@ -169,9 +169,11 @@
'target_name': 'fuzzer_run',
'type': 'none',
'dependencies': [
- 'json_fuzzer',
- 'parser_fuzzer',
- 'regexp_fuzzer',
+ 'v8_simple_json_fuzzer',
+ 'v8_simple_parser_fuzzer',
+ 'v8_simple_regexp_fuzzer',
+ 'v8_simple_wasm_fuzzer',
+ 'v8_simple_wasm_asmjs_fuzzer',
],
'includes': [
'../../gypfiles/isolate.gypi',
« no previous file with comments | « BUILD.gn ('k') | test/fuzzer/fuzzer.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698