OLD | NEW |
1 # Copyright 2014 PDFium Authors. All rights reserved. | 1 # Copyright 2014 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_xfa%': 0, # Set to 1 by standalone.gypi in standalone builds. | 7 'pdf_enable_xfa%': 0, # Set to 1 by standalone.gypi in standalone builds. |
8 }, | 8 }, |
9 'target_defaults': { | 9 'target_defaults': { |
10 'defines': [ | 10 'defines': [ |
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 }, | 323 }, |
324 ], | 324 ], |
325 'conditions': [ | 325 'conditions': [ |
326 ['pdf_enable_xfa==1', { | 326 ['pdf_enable_xfa==1', { |
327 'targets': [ | 327 'targets': [ |
328 { | 328 { |
329 'target_name': 'fx_tiff', | 329 'target_name': 'fx_tiff', |
330 'type': 'static_library', | 330 'type': 'static_library', |
331 'sources': [ | 331 'sources': [ |
332 'libtiff/tiffiop.h', | 332 'libtiff/tiffiop.h', |
| 333 'libtiff/tiffvers.h', |
333 'libtiff/tif_aux.c', | 334 'libtiff/tif_aux.c', |
334 'libtiff/tif_close.c', | 335 'libtiff/tif_close.c', |
335 'libtiff/tif_codec.c', | 336 'libtiff/tif_codec.c', |
336 'libtiff/tif_color.c', | 337 'libtiff/tif_color.c', |
337 'libtiff/tif_compress.c', | 338 'libtiff/tif_compress.c', |
338 'libtiff/tif_dir.c', | 339 'libtiff/tif_dir.c', |
339 'libtiff/tif_dirinfo.c', | 340 'libtiff/tif_dirinfo.c', |
340 'libtiff/tif_dirread.c', | 341 'libtiff/tif_dirread.c', |
341 'libtiff/tif_dirwrite.c', | 342 'libtiff/tif_dirwrite.c', |
342 'libtiff/tif_dumpmode.c', | 343 'libtiff/tif_dumpmode.c', |
(...skipping 21 matching lines...) Expand all Loading... |
364 'libtiff/tif_version.c', | 365 'libtiff/tif_version.c', |
365 'libtiff/tif_warning.c', | 366 'libtiff/tif_warning.c', |
366 'libtiff/tif_write.c', | 367 'libtiff/tif_write.c', |
367 'libtiff/tif_zip.c', | 368 'libtiff/tif_zip.c', |
368 ], | 369 ], |
369 }, | 370 }, |
370 ], | 371 ], |
371 }], | 372 }], |
372 ], | 373 ], |
373 } | 374 } |
OLD | NEW |