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

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

Issue 2612243005: Add postscript path (Closed)
Patch Set: Get rid of extra declarations Created 3 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
« no previous file with comments | « public/fpdfview.h ('k') | testing/libfuzzer/pdf_codec_a85_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
1 # Copyright 2016 The PDFium Authors. All rights reserved. 1 # Copyright 2016 The PDFium 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("../../pdfium.gni") 5 import("../../pdfium.gni")
6 6
7 config("libfuzzer_config") { 7 config("libfuzzer_config") {
8 configs = [ "../..:pdfium_core_config" ] 8 configs = [ "../..:pdfium_core_config" ]
9 9
10 defines = [ 10 defines = [
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 ] 98 ]
99 } 99 }
100 } 100 }
101 101
102 pdfium_fuzzer("pdf_cmap_fuzzer") { 102 pdfium_fuzzer("pdf_cmap_fuzzer") {
103 sources = [ 103 sources = [
104 "pdf_cmap_fuzzer.cc", 104 "pdf_cmap_fuzzer.cc",
105 ] 105 ]
106 } 106 }
107 107
108 pdfium_fuzzer("pdf_codec_a85_fuzzer") {
109 sources = [
110 "pdf_codec_a85_fuzzer.cc",
111 ]
112 }
113
108 pdfium_fuzzer("pdf_codec_fax_fuzzer") { 114 pdfium_fuzzer("pdf_codec_fax_fuzzer") {
109 sources = [ 115 sources = [
110 "pdf_codec_fax_fuzzer.cc", 116 "pdf_codec_fax_fuzzer.cc",
111 ] 117 ]
112 } 118 }
113 119
114 pdfium_fuzzer("pdf_codec_icc_fuzzer") { 120 pdfium_fuzzer("pdf_codec_icc_fuzzer") {
115 sources = [ 121 sources = [
116 "pdf_codec_icc_fuzzer.cc", 122 "pdf_codec_icc_fuzzer.cc",
117 ] 123 ]
118 } 124 }
119 125
120 pdfium_fuzzer("pdf_codec_jbig2_fuzzer") { 126 pdfium_fuzzer("pdf_codec_jbig2_fuzzer") {
121 sources = [ 127 sources = [
122 "pdf_codec_jbig2_fuzzer.cc", 128 "pdf_codec_jbig2_fuzzer.cc",
123 ] 129 ]
124 } 130 }
125 131
132 pdfium_fuzzer("pdf_codec_rle_fuzzer") {
133 sources = [
134 "pdf_codec_rle_fuzzer.cc",
135 ]
136 }
137
126 pdfium_fuzzer("pdf_hint_table_fuzzer") { 138 pdfium_fuzzer("pdf_hint_table_fuzzer") {
127 sources = [ 139 sources = [
128 "pdf_hint_table_fuzzer.cc", 140 "pdf_hint_table_fuzzer.cc",
129 ] 141 ]
130 } 142 }
131 143
132 pdfium_fuzzer("pdf_jpx_fuzzer") { 144 pdfium_fuzzer("pdf_jpx_fuzzer") {
133 sources = [ 145 sources = [
134 "pdf_jpx_fuzzer.cc", 146 "pdf_jpx_fuzzer.cc",
135 ] 147 ]
136 } 148 }
137 149
138 pdfium_fuzzer("pdf_psengine_fuzzer") { 150 pdfium_fuzzer("pdf_psengine_fuzzer") {
139 sources = [ 151 sources = [
140 "pdf_psengine_fuzzer.cc", 152 "pdf_psengine_fuzzer.cc",
141 ] 153 ]
142 } 154 }
143 155
144 pdfium_fuzzer("pdf_streamparser_fuzzer") { 156 pdfium_fuzzer("pdf_streamparser_fuzzer") {
145 sources = [ 157 sources = [
146 "pdf_streamparser_fuzzer.cc", 158 "pdf_streamparser_fuzzer.cc",
147 ] 159 ]
148 } 160 }
OLDNEW
« no previous file with comments | « public/fpdfview.h ('k') | testing/libfuzzer/pdf_codec_a85_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698