| 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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 "core/src/fxcodec/fx_libopenjpeg/src/fx_j2k_lib.c", | 332 "core/src/fxcodec/fx_libopenjpeg/src/fx_j2k_lib.c", |
| 333 "core/src/fxcodec/fx_libopenjpeg/src/fx_jpt.c", | 333 "core/src/fxcodec/fx_libopenjpeg/src/fx_jpt.c", |
| 334 "core/src/fxcodec/fx_libopenjpeg/src/fx_mct.c", | 334 "core/src/fxcodec/fx_libopenjpeg/src/fx_mct.c", |
| 335 "core/src/fxcodec/fx_libopenjpeg/src/fx_mqc.c", | 335 "core/src/fxcodec/fx_libopenjpeg/src/fx_mqc.c", |
| 336 "core/src/fxcodec/fx_libopenjpeg/src/fx_openjpeg.c", | 336 "core/src/fxcodec/fx_libopenjpeg/src/fx_openjpeg.c", |
| 337 "core/src/fxcodec/fx_libopenjpeg/src/fx_openjpeg_jp2.c", | 337 "core/src/fxcodec/fx_libopenjpeg/src/fx_openjpeg_jp2.c", |
| 338 "core/src/fxcodec/fx_libopenjpeg/src/fx_opj_clock.c", | 338 "core/src/fxcodec/fx_libopenjpeg/src/fx_opj_clock.c", |
| 339 "core/src/fxcodec/fx_libopenjpeg/src/fx_pi.c", | 339 "core/src/fxcodec/fx_libopenjpeg/src/fx_pi.c", |
| 340 "core/src/fxcodec/fx_libopenjpeg/src/fx_raw.c", | 340 "core/src/fxcodec/fx_libopenjpeg/src/fx_raw.c", |
| 341 "core/src/fxcodec/fx_libopenjpeg/src/fx_t1.c", | 341 "core/src/fxcodec/fx_libopenjpeg/src/fx_t1.c", |
| 342 "core/src/fxcodec/fx_libopenjpeg/src/fx_t1_generate_luts.c", | |
| 343 "core/src/fxcodec/fx_libopenjpeg/src/fx_t2.c", | 342 "core/src/fxcodec/fx_libopenjpeg/src/fx_t2.c", |
| 344 "core/src/fxcodec/fx_libopenjpeg/src/fx_tcd.c", | 343 "core/src/fxcodec/fx_libopenjpeg/src/fx_tcd.c", |
| 345 "core/src/fxcodec/fx_libopenjpeg/src/fx_tgt.c", | 344 "core/src/fxcodec/fx_libopenjpeg/src/fx_tgt.c", |
| 346 "core/src/fxcodec/fx_zlib/include/fx_zlib.h", | 345 "core/src/fxcodec/fx_zlib/include/fx_zlib.h", |
| 347 "core/src/fxcodec/fx_zlib/src/fx_zlib_adler32.c", | 346 "core/src/fxcodec/fx_zlib/src/fx_zlib_adler32.c", |
| 348 "core/src/fxcodec/fx_zlib/src/fx_zlib_compress.c", | 347 "core/src/fxcodec/fx_zlib/src/fx_zlib_compress.c", |
| 349 "core/src/fxcodec/fx_zlib/src/fx_zlib_crc32.c", | 348 "core/src/fxcodec/fx_zlib/src/fx_zlib_crc32.c", |
| 350 "core/src/fxcodec/fx_zlib/src/fx_zlib_deflate.c", | 349 "core/src/fxcodec/fx_zlib/src/fx_zlib_deflate.c", |
| 351 "core/src/fxcodec/fx_zlib/src/fx_zlib_gzclose.c", | 350 "core/src/fxcodec/fx_zlib/src/fx_zlib_gzclose.c", |
| 352 "core/src/fxcodec/fx_zlib/src/fx_zlib_gzlib.c", | 351 "core/src/fxcodec/fx_zlib/src/fx_zlib_gzlib.c", |
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 831 "testing/fx_string_testhelpers.h", | 830 "testing/fx_string_testhelpers.h", |
| 832 ] | 831 ] |
| 833 deps = [ | 832 deps = [ |
| 834 "//testing/gtest", | 833 "//testing/gtest", |
| 835 ":pdfium" | 834 ":pdfium" |
| 836 ] | 835 ] |
| 837 include_dirs = [ "." ] | 836 include_dirs = [ "." ] |
| 838 configs -= [ "//build/config/compiler:chromium_code" ] | 837 configs -= [ "//build/config/compiler:chromium_code" ] |
| 839 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] | 838 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 840 } | 839 } |
| OLD | NEW |