| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//build_overrides/v8.gni") | 5 import("//build_overrides/v8.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("pdfium.gni") | 7 import("pdfium.gni") |
| 8 | 8 |
| 9 config("pdfium_common_config") { | 9 config("pdfium_common_config") { |
| 10 cflags = [] | 10 cflags = [] |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 "core/fxcodec/codec/ccodec_jpxmodule.h", | 511 "core/fxcodec/codec/ccodec_jpxmodule.h", |
| 512 "core/fxcodec/codec/ccodec_scanlinedecoder.h", | 512 "core/fxcodec/codec/ccodec_scanlinedecoder.h", |
| 513 "core/fxcodec/codec/codec_int.h", | 513 "core/fxcodec/codec/codec_int.h", |
| 514 "core/fxcodec/codec/fx_codec.cpp", | 514 "core/fxcodec/codec/fx_codec.cpp", |
| 515 "core/fxcodec/codec/fx_codec_fax.cpp", | 515 "core/fxcodec/codec/fx_codec_fax.cpp", |
| 516 "core/fxcodec/codec/fx_codec_flate.cpp", | 516 "core/fxcodec/codec/fx_codec_flate.cpp", |
| 517 "core/fxcodec/codec/fx_codec_icc.cpp", | 517 "core/fxcodec/codec/fx_codec_icc.cpp", |
| 518 "core/fxcodec/codec/fx_codec_jbig.cpp", | 518 "core/fxcodec/codec/fx_codec_jbig.cpp", |
| 519 "core/fxcodec/codec/fx_codec_jpeg.cpp", | 519 "core/fxcodec/codec/fx_codec_jpeg.cpp", |
| 520 "core/fxcodec/codec/fx_codec_jpx_opj.cpp", | 520 "core/fxcodec/codec/fx_codec_jpx_opj.cpp", |
| 521 "core/fxcodec/include/JBig2_DocumentContext.h", |
| 521 "core/fxcodec/include/fx_codec.h", | 522 "core/fxcodec/include/fx_codec.h", |
| 522 "core/fxcodec/include/fx_codec_def.h", | 523 "core/fxcodec/include/fx_codec_def.h", |
| 523 "core/fxcodec/jbig2/JBig2_ArithDecoder.cpp", | 524 "core/fxcodec/jbig2/JBig2_ArithDecoder.cpp", |
| 524 "core/fxcodec/jbig2/JBig2_ArithDecoder.h", | 525 "core/fxcodec/jbig2/JBig2_ArithDecoder.h", |
| 525 "core/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp", | 526 "core/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp", |
| 526 "core/fxcodec/jbig2/JBig2_ArithIntDecoder.h", | 527 "core/fxcodec/jbig2/JBig2_ArithIntDecoder.h", |
| 527 "core/fxcodec/jbig2/JBig2_BitStream.cpp", | 528 "core/fxcodec/jbig2/JBig2_BitStream.cpp", |
| 528 "core/fxcodec/jbig2/JBig2_BitStream.h", | 529 "core/fxcodec/jbig2/JBig2_BitStream.h", |
| 529 "core/fxcodec/jbig2/JBig2_Context.cpp", | 530 "core/fxcodec/jbig2/JBig2_Context.cpp", |
| 530 "core/fxcodec/jbig2/JBig2_Context.h", | 531 "core/fxcodec/jbig2/JBig2_Context.h", |
| (...skipping 1074 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1605 } | 1606 } |
| 1606 | 1607 |
| 1607 if (pdf_is_standalone) { | 1608 if (pdf_is_standalone) { |
| 1608 source_set("samples") { | 1609 source_set("samples") { |
| 1609 testonly = true | 1610 testonly = true |
| 1610 deps = [ | 1611 deps = [ |
| 1611 "//samples", | 1612 "//samples", |
| 1612 ] | 1613 ] |
| 1613 } | 1614 } |
| 1614 } | 1615 } |
| OLD | NEW |