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

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

Issue 1677803002: Add a bunch of NSS ASN.1 fuzzers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix leak 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 | « BUILD.gn ('k') | testing/libfuzzer/fuzzers/nss/asn1_algorithmid_fuzzer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 # Individual libfuzzer tests that didn't find their home yet.
6
7 import("//build/config/features.gni")
8 import("//testing/libfuzzer/fuzzer_test.gni")
9
10 # root BUILD depenends on this target. Needed for package discovery
11 group("nss") {
12 }
13
14 if (is_linux) {
15 fuzzer_test("asn1_algorithmid_fuzzer") {
mmoroz 2016/03/03 10:28:32 Do you mind do add "nss_" prefix for all these fuz
16 sources = [
17 "asn1_algorithmid_fuzzer.cc",
18 ]
19 deps = [
20 "//crypto:platform",
21 ]
22 }
23
24 fuzzer_test("asn1_any_fuzzer") {
25 sources = [
26 "asn1_any_fuzzer.cc",
27 ]
28 deps = [
29 "//crypto:platform",
30 ]
31 }
32
33 fuzzer_test("asn1_bitstring_fuzzer") {
34 sources = [
35 "asn1_bitstring_fuzzer.cc",
36 ]
37 deps = [
38 "//crypto:platform",
39 ]
40 }
41
42 fuzzer_test("asn1_bmpstring_fuzzer") {
43 sources = [
44 "asn1_bmpstring_fuzzer.cc",
45 ]
46 deps = [
47 "//crypto:platform",
48 ]
49 }
50
51 fuzzer_test("asn1_boolean_fuzzer") {
52 sources = [
53 "asn1_boolean_fuzzer.cc",
54 ]
55 deps = [
56 "//crypto:platform",
57 ]
58 }
59
60 fuzzer_test("asn1_generalizedtime_fuzzer") {
61 sources = [
62 "asn1_generalizedtime_fuzzer.cc",
63 ]
64 deps = [
65 "//crypto:platform",
66 ]
67 }
68
69 fuzzer_test("asn1_ia5string_fuzzer") {
70 sources = [
71 "asn1_ia5string_fuzzer.cc",
72 ]
73 deps = [
74 "//crypto:platform",
75 ]
76 }
77
78 fuzzer_test("asn1_integer_fuzzer") {
79 sources = [
80 "asn1_integer_fuzzer.cc",
81 ]
82 deps = [
83 "//crypto:platform",
84 ]
85 }
86
87 fuzzer_test("asn1_null_fuzzer") {
88 sources = [
89 "asn1_null_fuzzer.cc",
90 ]
91 deps = [
92 "//crypto:platform",
93 ]
94 }
95
96 fuzzer_test("asn1_objectid_fuzzer") {
97 sources = [
98 "asn1_objectid_fuzzer.cc",
99 ]
100 deps = [
101 "//crypto:platform",
102 ]
103 }
104
105 fuzzer_test("asn1_octetstring_fuzzer") {
106 sources = [
107 "asn1_octetstring_fuzzer.cc",
108 ]
109 deps = [
110 "//crypto:platform",
111 ]
112 }
113
114 fuzzer_test("asn1_utctime_fuzzer") {
115 sources = [
116 "asn1_utctime_fuzzer.cc",
117 ]
118 deps = [
119 "//crypto:platform",
120 ]
121 }
122
123 fuzzer_test("asn1_utf8string_fuzzer") {
124 sources = [
125 "asn1_utf8string_fuzzer.cc",
126 ]
127 deps = [
128 "//crypto:platform",
129 ]
130 }
131
132 fuzzer_test("cert_certificate_fuzzer") {
133 sources = [
134 "cert_certificate_fuzzer.cc",
135 ]
136 deps = [
137 "//crypto:platform",
138 ]
139 }
140
141 fuzzer_test("seckey_privatekeyinfo_fuzzer") {
142 sources = [
143 "seckey_privatekeyinfo_fuzzer.cc",
144 ]
145 deps = [
146 "//crypto:platform",
147 ]
148 }
149 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | testing/libfuzzer/fuzzers/nss/asn1_algorithmid_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698