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

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

Issue 2335193002: [wasm] Move the wasm-module-runner from test/cctest to test/common (Closed)
Patch Set: Files should be compiled exactly once in a GN build. Created 4 years, 3 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 | « test/common/wasm/wasm-module-runner.cc ('k') | test/fuzzer/wasm.cc » ('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': ['../../gypfiles/toolchain.gypi', '../../gypfiles/features.gypi'], 9 'includes': ['../../gypfiles/toolchain.gypi', '../../gypfiles/features.gypi'],
10 'targets': [ 10 'targets': [
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 'target_name': 'wasm_fuzzer_lib', 103 'target_name': 'wasm_fuzzer_lib',
104 'type': 'static_library', 104 'type': 'static_library',
105 'dependencies': [ 105 'dependencies': [
106 'fuzzer_support', 106 'fuzzer_support',
107 ], 107 ],
108 'include_dirs': [ 108 'include_dirs': [
109 '../..', 109 '../..',
110 ], 110 ],
111 'sources': [ ### gcmole(all) ### 111 'sources': [ ### gcmole(all) ###
112 'wasm.cc', 112 'wasm.cc',
113 '../cctest/wasm/wasm-module-runner.cc', 113 '../common/wasm/wasm-module-runner.cc',
114 '../cctest/wasm/wasm-module-runner.h', 114 '../common/wasm/wasm-module-runner.h',
115 ], 115 ],
116 }, 116 },
117 { 117 {
118 'target_name': 'v8_simple_wasm_asmjs_fuzzer', 118 'target_name': 'v8_simple_wasm_asmjs_fuzzer',
119 'type': 'executable', 119 'type': 'executable',
120 'dependencies': [ 120 'dependencies': [
121 'wasm_asmjs_fuzzer_lib', 121 'wasm_asmjs_fuzzer_lib',
122 ], 122 ],
123 'include_dirs': [ 123 'include_dirs': [
124 '../..', 124 '../..',
125 ], 125 ],
126 'sources': [ 126 'sources': [
127 'fuzzer.cc', 127 'fuzzer.cc',
128 ], 128 ],
129 }, 129 },
130 { 130 {
131 'target_name': 'wasm_asmjs_fuzzer_lib', 131 'target_name': 'wasm_asmjs_fuzzer_lib',
132 'type': 'static_library', 132 'type': 'static_library',
133 'dependencies': [ 133 'dependencies': [
134 'fuzzer_support', 134 'fuzzer_support',
135 ], 135 ],
136 'include_dirs': [ 136 'include_dirs': [
137 '../..', 137 '../..',
138 ], 138 ],
139 'sources': [ ### gcmole(all) ### 139 'sources': [ ### gcmole(all) ###
140 'wasm-asmjs.cc', 140 'wasm-asmjs.cc',
141 '../cctest/wasm/wasm-module-runner.cc', 141 '../common/wasm/wasm-module-runner.cc',
142 '../cctest/wasm/wasm-module-runner.h', 142 '../common/wasm/wasm-module-runner.h',
143 ], 143 ],
144 }, 144 },
145 { 145 {
146 'target_name': 'v8_simple_wasm_code_fuzzer', 146 'target_name': 'v8_simple_wasm_code_fuzzer',
147 'type': 'executable', 147 'type': 'executable',
148 'dependencies': [ 148 'dependencies': [
149 'wasm_code_fuzzer_lib', 149 'wasm_code_fuzzer_lib',
150 ], 150 ],
151 'include_dirs': [ 151 'include_dirs': [
152 '../..', 152 '../..',
153 ], 153 ],
154 'sources': [ 154 'sources': [
155 'fuzzer.cc', 155 'fuzzer.cc',
156 ], 156 ],
157 }, 157 },
158 { 158 {
159 'target_name': 'wasm_code_fuzzer_lib', 159 'target_name': 'wasm_code_fuzzer_lib',
160 'type': 'static_library', 160 'type': 'static_library',
161 'dependencies': [ 161 'dependencies': [
162 'fuzzer_support', 162 'fuzzer_support',
163 ], 163 ],
164 'include_dirs': [ 164 'include_dirs': [
165 '../..', 165 '../..',
166 ], 166 ],
167 'sources': [ ### gcmole(all) ### 167 'sources': [ ### gcmole(all) ###
168 'wasm-code.cc', 168 'wasm-code.cc',
169 '../cctest/wasm/wasm-module-runner.cc', 169 '../common/wasm/wasm-module-runner.cc',
170 '../cctest/wasm/wasm-module-runner.h', 170 '../common/wasm/wasm-module-runner.h',
171 ], 171 ],
172 }, 172 },
173 { 173 {
174 'target_name': 'fuzzer_support', 174 'target_name': 'fuzzer_support',
175 'type': 'static_library', 175 'type': 'static_library',
176 'dependencies': [ 176 'dependencies': [
177 '../../src/v8.gyp:v8_libplatform', 177 '../../src/v8.gyp:v8_libplatform',
178 ], 178 ],
179 'include_dirs': [ 179 'include_dirs': [
180 '../..', 180 '../..',
(...skipping 30 matching lines...) Expand all
211 '../../gypfiles/isolate.gypi', 211 '../../gypfiles/isolate.gypi',
212 ], 212 ],
213 'sources': [ 213 'sources': [
214 'fuzzer.isolate', 214 'fuzzer.isolate',
215 ], 215 ],
216 }, 216 },
217 ], 217 ],
218 }], 218 }],
219 ], 219 ],
220 } 220 }
OLDNEW
« no previous file with comments | « test/common/wasm/wasm-module-runner.cc ('k') | test/fuzzer/wasm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698