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

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

Issue 1738943004: Adding Wasm + Wasm-asm variant fuzzer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 4 years, 9 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 | « src/wasm/wasm-module.cc ('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': [
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 'fuzzer_support', 80 'fuzzer_support',
81 ], 81 ],
82 'include_dirs': [ 82 'include_dirs': [
83 '../..', 83 '../..',
84 ], 84 ],
85 'sources': [ ### gcmole(all) ### 85 'sources': [ ### gcmole(all) ###
86 'regexp.cc', 86 'regexp.cc',
87 ], 87 ],
88 }, 88 },
89 { 89 {
90 'target_name': 'wasm_fuzzer',
91 'type': 'executable',
92 'dependencies': [
93 'wasm_fuzzer_lib',
94 ],
95 'include_dirs': [
96 '../..',
97 ],
98 'sources': [
99 'fuzzer.cc',
100 ],
101 },
102 {
103 'target_name': 'wasm_fuzzer_lib',
104 'type': 'static_library',
105 'dependencies': [
106 'fuzzer_support',
107 ],
108 'include_dirs': [
109 '../..',
110 ],
111 'sources': [ ### gcmole(all) ###
112 'wasm.cc',
113 ],
114 },
115 {
116 'target_name': 'wasm_asmjs_fuzzer',
117 'type': 'executable',
118 'dependencies': [
119 'wasm_asmjs_fuzzer_lib',
120 ],
121 'include_dirs': [
122 '../..',
123 ],
124 'sources': [
125 'fuzzer.cc',
126 ],
127 },
128 {
129 'target_name': 'wasm_asmjs_fuzzer_lib',
130 'type': 'static_library',
131 'dependencies': [
132 'fuzzer_support',
133 ],
134 'include_dirs': [
135 '../..',
136 ],
137 'sources': [ ### gcmole(all) ###
138 'wasm-asmjs.cc',
139 ],
140 },
141 {
90 'target_name': 'fuzzer_support', 142 'target_name': 'fuzzer_support',
91 'type': 'static_library', 143 'type': 'static_library',
92 'dependencies': [ 144 'dependencies': [
93 '../../tools/gyp/v8.gyp:v8_libplatform', 145 '../../tools/gyp/v8.gyp:v8_libplatform',
94 ], 146 ],
95 'include_dirs': [ 147 'include_dirs': [
96 '../..', 148 '../..',
97 ], 149 ],
98 'sources': [ ### gcmole(all) ### 150 'sources': [ ### gcmole(all) ###
99 'fuzzer-support.cc', 151 'fuzzer-support.cc',
(...skipping 25 matching lines...) Expand all
125 '../../build/isolate.gypi', 177 '../../build/isolate.gypi',
126 ], 178 ],
127 'sources': [ 179 'sources': [
128 'fuzzer.isolate', 180 'fuzzer.isolate',
129 ], 181 ],
130 }, 182 },
131 ], 183 ],
132 }], 184 }],
133 ], 185 ],
134 } 186 }
OLDNEW
« no previous file with comments | « src/wasm/wasm-module.cc ('k') | test/fuzzer/fuzzer.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698