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

Unified 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 side-by-side diff with in-line comments
Download patch
« BUILD.gn ('K') | « BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/libfuzzer/fuzzers/BUILD.gn
diff --git a/testing/libfuzzer/fuzzers/BUILD.gn b/testing/libfuzzer/fuzzers/BUILD.gn
index 94680fe01143077034fdfd1506cc0fd23d1cb723..cbe1e6af3dd428e55b06c6be8fd03259853dc539 100644
--- a/testing/libfuzzer/fuzzers/BUILD.gn
+++ b/testing/libfuzzer/fuzzers/BUILD.gn
@@ -282,13 +282,16 @@ fuzzer_test("unicode_string_codepage_create_fuzzer") {
]
}
-fuzzer_test("libexif_parser_fuzzer") {
- sources = [
- "libexif_parser_fuzzer.cc",
- ]
- deps = [
- "//third_party/libexif:libexif_fuzzers",
- ]
+if (is_linux) {
+ # 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
+ fuzzer_test("libexif_parser_fuzzer") {
+ sources = [
+ "libexif_parser_fuzzer.cc",
+ ]
+ deps = [
+ "//third_party/libexif:libexif_fuzzers",
+ ]
+ }
}
fuzzer_test("libpng_read_fuzzer") {
« BUILD.gn ('K') | « BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698