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

Side by Side Diff: testing/libfuzzer/fuzzers/BUILD.gn

Issue 1628663002: Build libFuzzer fuzzer targets on Windows for use_drfuzz (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« BUILD.gn ('K') | « BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium 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 # Individual libfuzzer tests that didn't find their home yet. 5 # Individual libfuzzer tests that didn't find their home yet.
6 6
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//testing/libfuzzer/fuzzer_test.gni") 9 import("//testing/libfuzzer/fuzzer_test.gni")
10 10
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 275
276 fuzzer_test("unicode_string_codepage_create_fuzzer") { 276 fuzzer_test("unicode_string_codepage_create_fuzzer") {
277 sources = [ 277 sources = [
278 "unicode_string_codepage_create_fuzzer.cc", 278 "unicode_string_codepage_create_fuzzer.cc",
279 ] 279 ]
280 deps = [ 280 deps = [
281 "//third_party/icu", 281 "//third_party/icu",
282 ] 282 ]
283 } 283 }
284 284
285 fuzzer_test("libexif_parser_fuzzer") { 285 if (is_linux) {
286 sources = [ 286 # libexif_fuzzer is linux only atm
Dirk Pranke 2016/01/25 20:37:36 do you expect this to be not-linux-only at some po
287 "libexif_parser_fuzzer.cc", 287 fuzzer_test("libexif_parser_fuzzer") {
288 ] 288 sources = [
289 deps = [ 289 "libexif_parser_fuzzer.cc",
290 "//third_party/libexif:libexif_fuzzers", 290 ]
291 ] 291 deps = [
292 "//third_party/libexif:libexif_fuzzers",
293 ]
294 }
292 } 295 }
293 296
294 fuzzer_test("libpng_read_fuzzer") { 297 fuzzer_test("libpng_read_fuzzer") {
295 sources = [ 298 sources = [
296 "libpng_read_fuzzer.cc", 299 "libpng_read_fuzzer.cc",
297 ] 300 ]
298 deps = [ 301 deps = [
299 "//base", 302 "//base",
300 "//third_party/libpng", 303 "//third_party/libpng",
301 ] 304 ]
302 } 305 }
OLDNEW
« BUILD.gn ('K') | « BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698