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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 "core/src/fxcodec/codec/fx_codec_flate.cpp", | 348 "core/src/fxcodec/codec/fx_codec_flate.cpp", |
349 "core/src/fxcodec/codec/fx_codec_icc.cpp", | 349 "core/src/fxcodec/codec/fx_codec_icc.cpp", |
350 "core/src/fxcodec/codec/fx_codec_jbig.cpp", | 350 "core/src/fxcodec/codec/fx_codec_jbig.cpp", |
351 "core/src/fxcodec/codec/fx_codec_jbig_enc.cpp", | 351 "core/src/fxcodec/codec/fx_codec_jbig_enc.cpp", |
352 "core/src/fxcodec/codec/fx_codec_jpeg.cpp", | 352 "core/src/fxcodec/codec/fx_codec_jpeg.cpp", |
353 "core/src/fxcodec/codec/fx_codec_jpx_opj.cpp", | 353 "core/src/fxcodec/codec/fx_codec_jpx_opj.cpp", |
354 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.cpp", | 354 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.cpp", |
355 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.h", | 355 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.h", |
356 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp", | 356 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp", |
357 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.h", | 357 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.h", |
| 358 "core/src/fxcodec/jbig2/JBig2_BitStream.cpp", |
358 "core/src/fxcodec/jbig2/JBig2_BitStream.h", | 359 "core/src/fxcodec/jbig2/JBig2_BitStream.h", |
359 "core/src/fxcodec/jbig2/JBig2_Context.cpp", | 360 "core/src/fxcodec/jbig2/JBig2_Context.cpp", |
360 "core/src/fxcodec/jbig2/JBig2_Context.h", | 361 "core/src/fxcodec/jbig2/JBig2_Context.h", |
361 "core/src/fxcodec/jbig2/JBig2_Define.h", | 362 "core/src/fxcodec/jbig2/JBig2_Define.h", |
362 "core/src/fxcodec/jbig2/JBig2_GrdProc.cpp", | 363 "core/src/fxcodec/jbig2/JBig2_GrdProc.cpp", |
363 "core/src/fxcodec/jbig2/JBig2_GrdProc.h", | 364 "core/src/fxcodec/jbig2/JBig2_GrdProc.h", |
364 "core/src/fxcodec/jbig2/JBig2_GrrdProc.cpp", | 365 "core/src/fxcodec/jbig2/JBig2_GrrdProc.cpp", |
365 "core/src/fxcodec/jbig2/JBig2_GrrdProc.h", | 366 "core/src/fxcodec/jbig2/JBig2_GrrdProc.h", |
366 "core/src/fxcodec/jbig2/JBig2_GsidProc.cpp", | 367 "core/src/fxcodec/jbig2/JBig2_GsidProc.cpp", |
367 "core/src/fxcodec/jbig2/JBig2_GsidProc.h", | 368 "core/src/fxcodec/jbig2/JBig2_GsidProc.h", |
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
796 "//v8", | 797 "//v8", |
797 "//v8/include", | 798 "//v8/include", |
798 "." | 799 "." |
799 ] | 800 ] |
800 configs -= [ "//build/config/compiler:chromium_code" ] | 801 configs -= [ "//build/config/compiler:chromium_code" ] |
801 configs += [ | 802 configs += [ |
802 ":pdfium_config", | 803 ":pdfium_config", |
803 "//build/config/compiler:no_chromium_code", | 804 "//build/config/compiler:no_chromium_code", |
804 ] | 805 ] |
805 } | 806 } |
OLD | NEW |