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

Side by Side Diff: third_party/boringssl/BUILD.gn

Issue 1768743002: [libfuzzer] in-vcs corpus support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: making sure 2nd build doesn't build anything. 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 | « testing/libfuzzer/fuzzer_test.gni ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//testing/libfuzzer/fuzzer_test.gni") 7 import("//testing/libfuzzer/fuzzer_test.gni")
8 8
9 # Config for us and everybody else depending on BoringSSL. 9 # Config for us and everybody else depending on BoringSSL.
10 config("openssl_config") { 10 config("openssl_config") {
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 } 120 }
121 } 121 }
122 122
123 fuzzer_test("boringssl_d2i_x509_fuzzer") { 123 fuzzer_test("boringssl_d2i_x509_fuzzer") {
124 sources = [ 124 sources = [
125 "src/fuzz/cert.cc", 125 "src/fuzz/cert.cc",
126 ] 126 ]
127 deps = [ 127 deps = [
128 ":boringssl", 128 ":boringssl",
129 ] 129 ]
130 seed_corpus = "src/fuzz/cert_corpus"
130 } 131 }
131 132
132 fuzzer_test("boringssl_client_bio_write_fuzzer") { 133 fuzzer_test("boringssl_client_bio_write_fuzzer") {
133 sources = [ 134 sources = [
134 "src/fuzz/client.cc", 135 "src/fuzz/client.cc",
135 ] 136 ]
136 deps = [ 137 deps = [
137 ":boringssl", 138 ":boringssl",
138 ] 139 ]
140 seed_corpus = "src/fuzz/client_corpus"
139 } 141 }
140 142
141 fuzzer_test("boringssl_d2i_autoprivatekey_fuzzer") { 143 fuzzer_test("boringssl_d2i_autoprivatekey_fuzzer") {
142 sources = [ 144 sources = [
143 "src/fuzz/privkey.cc", 145 "src/fuzz/privkey.cc",
144 ] 146 ]
145 deps = [ 147 deps = [
146 ":boringssl", 148 ":boringssl",
147 ] 149 ]
150 seed_corpus = "src/fuzz/privkey_corpus"
148 } 151 }
149 152
150 fuzzer_test("boringssl_server_bio_write_fuzzer") { 153 fuzzer_test("boringssl_server_bio_write_fuzzer") {
151 sources = [ 154 sources = [
152 "src/fuzz/server.cc", 155 "src/fuzz/server.cc",
153 ] 156 ]
154 deps = [ 157 deps = [
155 ":boringssl", 158 ":boringssl",
156 ] 159 ]
160 seed_corpus = "src/fuzz/server_corpus"
157 } 161 }
OLDNEW
« no previous file with comments | « testing/libfuzzer/fuzzer_test.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698