OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium 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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 pdf_use_skia = false | 7 pdf_use_skia = false |
8 | 8 |
9 declare_args() { | 9 declare_args() { |
10 # On Android there's no system FreeType. On Windows and Mac, only a few | 10 # On Android there's no system FreeType. On Windows and Mac, only a few |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 static_library("fxcodec") { | 336 static_library("fxcodec") { |
337 deps = [ | 337 deps = [ |
338 "third_party:fx_lcms2", | 338 "third_party:fx_lcms2", |
339 "third_party:fx_libjpeg", | 339 "third_party:fx_libjpeg", |
340 "third_party:fx_libopenjpeg", | 340 "third_party:fx_libopenjpeg", |
341 "third_party:fx_zlib", | 341 "third_party:fx_zlib", |
342 ] | 342 ] |
343 sources = [ | 343 sources = [ |
344 "core/include/fxcodec/fx_codec.h", | 344 "core/include/fxcodec/fx_codec.h", |
345 "core/include/fxcodec/fx_codec_def.h", | 345 "core/include/fxcodec/fx_codec_def.h", |
| 346 "core/include/fxcodec/fx_codec_flate.h", |
346 "core/include/fxcodec/fx_codec_provider.h", | 347 "core/include/fxcodec/fx_codec_provider.h", |
347 "core/src/fxcodec/codec/codec_int.h", | 348 "core/src/fxcodec/codec/codec_int.h", |
348 "core/src/fxcodec/codec/fx_codec.cpp", | 349 "core/src/fxcodec/codec/fx_codec.cpp", |
349 "core/src/fxcodec/codec/fx_codec_fax.cpp", | 350 "core/src/fxcodec/codec/fx_codec_fax.cpp", |
350 "core/src/fxcodec/codec/fx_codec_flate.cpp", | 351 "core/src/fxcodec/codec/fx_codec_flate.cpp", |
351 "core/src/fxcodec/codec/fx_codec_icc.cpp", | 352 "core/src/fxcodec/codec/fx_codec_icc.cpp", |
352 "core/src/fxcodec/codec/fx_codec_jbig.cpp", | 353 "core/src/fxcodec/codec/fx_codec_jbig.cpp", |
353 "core/src/fxcodec/codec/fx_codec_jbig_enc.cpp", | 354 "core/src/fxcodec/codec/fx_codec_jbig_enc.cpp", |
354 "core/src/fxcodec/codec/fx_codec_jpeg.cpp", | 355 "core/src/fxcodec/codec/fx_codec_jpeg.cpp", |
355 "core/src/fxcodec/codec/fx_codec_jpx_opj.cpp", | 356 "core/src/fxcodec/codec/fx_codec_jpx_opj.cpp", |
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
775 "//v8", | 776 "//v8", |
776 "//v8/include", | 777 "//v8/include", |
777 "." | 778 "." |
778 ] | 779 ] |
779 configs -= [ "//build/config/compiler:chromium_code" ] | 780 configs -= [ "//build/config/compiler:chromium_code" ] |
780 configs += [ | 781 configs += [ |
781 ":pdfium_config", | 782 ":pdfium_config", |
782 "//build/config/compiler:no_chromium_code", | 783 "//build/config/compiler:no_chromium_code", |
783 ] | 784 ] |
784 } | 785 } |
OLD | NEW |