| 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 ] | 271 ] |
| 272 } | 272 } |
| 273 | 273 |
| 274 source_set("fx_lpng") { | 274 source_set("fx_lpng") { |
| 275 configs -= [ "//build/config/compiler:chromium_code" ] | 275 configs -= [ "//build/config/compiler:chromium_code" ] |
| 276 configs += [ | 276 configs += [ |
| 277 "//build/config/compiler:no_chromium_code", | 277 "//build/config/compiler:no_chromium_code", |
| 278 "//third_party/pdfium:pdfium_config", | 278 "//third_party/pdfium:pdfium_config", |
| 279 ] | 279 ] |
| 280 sources = [ | 280 sources = [ |
| 281 "libpng/png.c", | 281 "libpng16/png.c", |
| 282 "libpng/png.h", | 282 "libpng16/png.h", |
| 283 "libpng/pngconf.h", | 283 "libpng16/pngconf.h", |
| 284 "libpng/pngdebug.h", | 284 "libpng16/pngdebug.h", |
| 285 "libpng/pngerror.c", | 285 "libpng16/pngerror.c", |
| 286 "libpng/pngget.c", | 286 "libpng16/pngget.c", |
| 287 "libpng/pnginfo.h", | 287 "libpng16/pnginfo.h", |
| 288 "libpng/pnglibconf.h", | 288 "libpng16/pnglibconf.h", |
| 289 "libpng/pngmem.c", | 289 "libpng16/pngmem.c", |
| 290 "libpng/pngpread.c", | 290 "libpng16/pngpread.c", |
| 291 "libpng/pngpriv.h", | 291 "libpng16/pngpriv.h", |
| 292 "libpng/pngread.c", | 292 "libpng16/pngread.c", |
| 293 "libpng/pngrio.c", | 293 "libpng16/pngrio.c", |
| 294 "libpng/pngrtran.c", | 294 "libpng16/pngrtran.c", |
| 295 "libpng/pngrutil.c", | 295 "libpng16/pngrutil.c", |
| 296 "libpng/pngset.c", | 296 "libpng16/pngset.c", |
| 297 "libpng/pngstruct.h", | 297 "libpng16/pngstruct.h", |
| 298 "libpng/pngtrans.c", | 298 "libpng16/pngtrans.c", |
| 299 "libpng/pngwio.c", | 299 "libpng16/pngwio.c", |
| 300 "libpng/pngwrite.c", | 300 "libpng16/pngwrite.c", |
| 301 "libpng/pngwtran.c", | 301 "libpng16/pngwtran.c", |
| 302 "libpng/pngwutil.c", | 302 "libpng16/pngwutil.c", |
| 303 ] | 303 ] |
| 304 } | 304 } |
| 305 | 305 |
| 306 if (pdf_enable_xfa) { | 306 if (pdf_enable_xfa) { |
| 307 source_set("fx_tiff") { | 307 source_set("fx_tiff") { |
| 308 configs -= [ "//build/config/compiler:chromium_code" ] | 308 configs -= [ "//build/config/compiler:chromium_code" ] |
| 309 configs += [ | 309 configs += [ |
| 310 "//build/config/compiler:no_chromium_code", | 310 "//build/config/compiler:no_chromium_code", |
| 311 "//third_party/pdfium:pdfium_config", | 311 "//third_party/pdfium:pdfium_config", |
| 312 ] | 312 ] |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 sources = [ | 387 sources = [ |
| 388 "base/logging.h", | 388 "base/logging.h", |
| 389 "base/macros.h", | 389 "base/macros.h", |
| 390 "base/numerics/safe_conversions.h", | 390 "base/numerics/safe_conversions.h", |
| 391 "base/numerics/safe_conversions_impl.h", | 391 "base/numerics/safe_conversions_impl.h", |
| 392 "base/numerics/safe_math.h", | 392 "base/numerics/safe_math.h", |
| 393 "base/numerics/safe_math_impl.h", | 393 "base/numerics/safe_math_impl.h", |
| 394 "base/stl_util.h", | 394 "base/stl_util.h", |
| 395 ] | 395 ] |
| 396 } | 396 } |
| OLD | NEW |