OLD | NEW |
1 # Copyright 2016 PDFium Authors. All rights reserved. | 1 # Copyright 2016 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'pdf_enable_v8%': 1, | 7 'pdf_enable_v8%': 1, |
8 'pdf_enable_xfa%': 0, # Set to 1 in standalone builds by standalone.gypi. | 8 'pdf_enable_xfa%': 0, # Set to 1 in standalone builds by standalone.gypi. |
9 }, | 9 }, |
10 'target_defaults': { | 10 'target_defaults': { |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 'type': 'executable', | 55 'type': 'executable', |
56 'dependencies': [ | 56 'dependencies': [ |
57 '../../pdfium.gyp:pdfium', | 57 '../../pdfium.gyp:pdfium', |
58 ], | 58 ], |
59 'sources': [ | 59 'sources': [ |
60 'pdf_xml_fuzzer.cc', | 60 'pdf_xml_fuzzer.cc', |
61 'unittest_main.cc', | 61 'unittest_main.cc', |
62 ], | 62 ], |
63 }, | 63 }, |
64 { | 64 { |
| 65 'target_name': 'pdf_cfx_saxreader_fuzzer', |
| 66 'type': 'executable', |
| 67 'dependencies': [ |
| 68 '../../pdfium.gyp:pdfium', |
| 69 ], |
| 70 'sources': [ |
| 71 'pdf_cfx_saxreader_fuzzer.cc', |
| 72 'unittest_main.cc', |
| 73 ], |
| 74 }, |
| 75 { |
65 'target_name': 'pdf_codec_png_fuzzer', | 76 'target_name': 'pdf_codec_png_fuzzer', |
66 'type': 'executable', | 77 'type': 'executable', |
67 'dependencies': [ | 78 'dependencies': [ |
68 '../../pdfium.gyp:pdfium', | 79 '../../pdfium.gyp:pdfium', |
69 ], | 80 ], |
70 'sources': [ | 81 'sources': [ |
71 'pdf_codec_png_fuzzer.cc', | 82 'pdf_codec_png_fuzzer.cc', |
72 'unittest_main.cc', | 83 'unittest_main.cc', |
73 'xfa_codec_fuzzer.h', | 84 'xfa_codec_fuzzer.h', |
74 ], | 85 ], |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 }], | 162 }], |
152 ], | 163 ], |
153 # Empty target so that nonxfa builds work. | 164 # Empty target so that nonxfa builds work. |
154 'targets': [ | 165 'targets': [ |
155 { | 166 { |
156 'target_name': 'empty_target', | 167 'target_name': 'empty_target', |
157 'type': 'none', | 168 'type': 'none', |
158 } | 169 } |
159 ], | 170 ], |
160 } | 171 } |
OLD | NEW |