| 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 "core/src/fxcodec/fx_libopenjpeg/src/fx_j2k_lib.c", | 340 "core/src/fxcodec/fx_libopenjpeg/src/fx_j2k_lib.c", |
| 341 "core/src/fxcodec/fx_libopenjpeg/src/fx_jpt.c", | 341 "core/src/fxcodec/fx_libopenjpeg/src/fx_jpt.c", |
| 342 "core/src/fxcodec/fx_libopenjpeg/src/fx_mct.c", | 342 "core/src/fxcodec/fx_libopenjpeg/src/fx_mct.c", |
| 343 "core/src/fxcodec/fx_libopenjpeg/src/fx_mqc.c", | 343 "core/src/fxcodec/fx_libopenjpeg/src/fx_mqc.c", |
| 344 "core/src/fxcodec/fx_libopenjpeg/src/fx_openjpeg.c", | 344 "core/src/fxcodec/fx_libopenjpeg/src/fx_openjpeg.c", |
| 345 "core/src/fxcodec/fx_libopenjpeg/src/fx_openjpeg_jp2.c", | 345 "core/src/fxcodec/fx_libopenjpeg/src/fx_openjpeg_jp2.c", |
| 346 "core/src/fxcodec/fx_libopenjpeg/src/fx_opj_clock.c", | 346 "core/src/fxcodec/fx_libopenjpeg/src/fx_opj_clock.c", |
| 347 "core/src/fxcodec/fx_libopenjpeg/src/fx_pi.c", | 347 "core/src/fxcodec/fx_libopenjpeg/src/fx_pi.c", |
| 348 "core/src/fxcodec/fx_libopenjpeg/src/fx_raw.c", | 348 "core/src/fxcodec/fx_libopenjpeg/src/fx_raw.c", |
| 349 "core/src/fxcodec/fx_libopenjpeg/src/fx_t1.c", | 349 "core/src/fxcodec/fx_libopenjpeg/src/fx_t1.c", |
| 350 "core/src/fxcodec/fx_libopenjpeg/src/fx_t1_generate_luts.c", | |
| 351 "core/src/fxcodec/fx_libopenjpeg/src/fx_t2.c", | 350 "core/src/fxcodec/fx_libopenjpeg/src/fx_t2.c", |
| 352 "core/src/fxcodec/fx_libopenjpeg/src/fx_tcd.c", | 351 "core/src/fxcodec/fx_libopenjpeg/src/fx_tcd.c", |
| 353 "core/src/fxcodec/fx_libopenjpeg/src/fx_tgt.c", | 352 "core/src/fxcodec/fx_libopenjpeg/src/fx_tgt.c", |
| 354 "core/src/fxcodec/fx_lpng/src/fx_png.c", | 353 "core/src/fxcodec/fx_lpng/src/fx_png.c", |
| 355 "core/src/fxcodec/fx_lpng/src/fx_pngerror.c", | 354 "core/src/fxcodec/fx_lpng/src/fx_pngerror.c", |
| 356 "core/src/fxcodec/fx_lpng/src/fx_pngget.c", | 355 "core/src/fxcodec/fx_lpng/src/fx_pngget.c", |
| 357 "core/src/fxcodec/fx_lpng/src/fx_pngmem.c", | 356 "core/src/fxcodec/fx_lpng/src/fx_pngmem.c", |
| 358 "core/src/fxcodec/fx_lpng/src/fx_pngpread.c", | 357 "core/src/fxcodec/fx_lpng/src/fx_pngpread.c", |
| 359 "core/src/fxcodec/fx_lpng/src/fx_pngread.c", | 358 "core/src/fxcodec/fx_lpng/src/fx_pngread.c", |
| 360 "core/src/fxcodec/fx_lpng/src/fx_pngrio.c", | 359 "core/src/fxcodec/fx_lpng/src/fx_pngrio.c", |
| (...skipping 1221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1582 "testing/fx_string_testhelpers.h", | 1581 "testing/fx_string_testhelpers.h", |
| 1583 ] | 1582 ] |
| 1584 deps = [ | 1583 deps = [ |
| 1585 "//testing/gtest", | 1584 "//testing/gtest", |
| 1586 ":pdfium" | 1585 ":pdfium" |
| 1587 ] | 1586 ] |
| 1588 include_dirs = [ "." ] | 1587 include_dirs = [ "." ] |
| 1589 configs -= [ "//build/config/compiler:chromium_code" ] | 1588 configs -= [ "//build/config/compiler:chromium_code" ] |
| 1590 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] | 1589 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 1591 } | 1590 } |
| OLD | NEW |