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

Side by Side Diff: test/fuzzer/fuzzer.gyp

Issue 1652963002: Add json fuzzer (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: updates Created 4 years, 10 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 unified diff | Download patch
« no previous file with comments | « BUILD.gn ('k') | test/fuzzer/fuzzer.isolate » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 the V8 project authors. All rights reserved. 1 # Copyright 2016 the V8 project authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'v8_code': 1, 7 'v8_code': 1,
8 }, 8 },
9 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'], 9 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'],
10 'targets': [ 10 'targets': [
11 { 11 {
12 'target_name': 'json_fuzzer',
13 'type': 'executable',
14 'dependencies': [
15 'json_fuzzer_lib',
16 ],
17 'include_dirs': [
18 '../..',
19 ],
20 'sources': [
21 'fuzzer.cc',
22 ],
23 },
24 {
25 'target_name': 'json_fuzzer_lib',
26 'type': 'static_library',
27 'dependencies': [
28 'fuzzer_support',
29 ],
30 'include_dirs': [
31 '../..',
32 ],
33 'sources': [ ### gcmole(all) ###
34 'json.cc',
35 ],
36 },
37 {
12 'target_name': 'parser_fuzzer', 38 'target_name': 'parser_fuzzer',
13 'type': 'executable', 39 'type': 'executable',
14 'dependencies': [ 40 'dependencies': [
15 'parser_fuzzer_lib', 41 'parser_fuzzer_lib',
16 ], 42 ],
17 'include_dirs': [ 43 'include_dirs': [
18 '../..', 44 '../..',
19 ], 45 ],
20 'sources': [ 46 'sources': [
21 'fuzzer.cc', 47 'fuzzer.cc',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 ], 110 ],
85 }, 111 },
86 ], 112 ],
87 'conditions': [ 113 'conditions': [
88 ['test_isolation_mode != "noop"', { 114 ['test_isolation_mode != "noop"', {
89 'targets': [ 115 'targets': [
90 { 116 {
91 'target_name': 'fuzzer_run', 117 'target_name': 'fuzzer_run',
92 'type': 'none', 118 'type': 'none',
93 'dependencies': [ 119 'dependencies': [
120 'json_fuzzer',
94 'parser_fuzzer', 121 'parser_fuzzer',
95 'regexp_fuzzer', 122 'regexp_fuzzer',
96 ], 123 ],
97 'includes': [ 124 'includes': [
98 '../../build/isolate.gypi', 125 '../../build/isolate.gypi',
99 ], 126 ],
100 'sources': [ 127 'sources': [
101 'fuzzer.isolate', 128 'fuzzer.isolate',
102 ], 129 ],
103 }, 130 },
104 ], 131 ],
105 }], 132 }],
106 ], 133 ],
107 } 134 }
OLDNEW
« 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