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 import("../pdfium.gni") | 5 import("../pdfium.gni") |
6 | 6 |
7 group("third_party") { | 7 group("third_party") { |
8 deps = [ | 8 deps = [ |
9 ":bigint", | 9 ":bigint", |
10 ":fx_freetype", | 10 ":fx_freetype", |
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 | 299 |
300 if (pdf_enable_xfa) { | 300 if (pdf_enable_xfa) { |
301 source_set("fx_tiff") { | 301 source_set("fx_tiff") { |
302 configs -= [ "//build/config/compiler:chromium_code" ] | 302 configs -= [ "//build/config/compiler:chromium_code" ] |
303 configs += [ | 303 configs += [ |
304 "//build/config/compiler:no_chromium_code", | 304 "//build/config/compiler:no_chromium_code", |
305 "//third_party/pdfium:pdfium_config", | 305 "//third_party/pdfium:pdfium_config", |
306 ] | 306 ] |
307 sources = [ | 307 sources = [ |
308 "libtiff/tiffiop.h", | 308 "libtiff/tiffiop.h", |
| 309 "libtiff/tiffvers.h", |
309 "libtiff/tif_aux.c", | 310 "libtiff/tif_aux.c", |
310 "libtiff/tif_close.c", | 311 "libtiff/tif_close.c", |
311 "libtiff/tif_codec.c", | 312 "libtiff/tif_codec.c", |
312 "libtiff/tif_color.c", | 313 "libtiff/tif_color.c", |
313 "libtiff/tif_compress.c", | 314 "libtiff/tif_compress.c", |
314 "libtiff/tif_dir.c", | 315 "libtiff/tif_dir.c", |
315 "libtiff/tif_dirinfo.c", | 316 "libtiff/tif_dirinfo.c", |
316 "libtiff/tif_dirread.c", | 317 "libtiff/tif_dirread.c", |
317 "libtiff/tif_dirwrite.c", | 318 "libtiff/tif_dirwrite.c", |
318 "libtiff/tif_dumpmode.c", | 319 "libtiff/tif_dumpmode.c", |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 sources = [ | 380 sources = [ |
380 "base/logging.h", | 381 "base/logging.h", |
381 "base/macros.h", | 382 "base/macros.h", |
382 "base/numerics/safe_conversions.h", | 383 "base/numerics/safe_conversions.h", |
383 "base/numerics/safe_conversions_impl.h", | 384 "base/numerics/safe_conversions_impl.h", |
384 "base/numerics/safe_math.h", | 385 "base/numerics/safe_math.h", |
385 "base/numerics/safe_math_impl.h", | 386 "base/numerics/safe_math_impl.h", |
386 "base/stl_util.h", | 387 "base/stl_util.h", |
387 ] | 388 ] |
388 } | 389 } |
OLD | NEW |