| 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 import("pdfium.gni") | 6 import("pdfium.gni") |
| 7 | 7 |
| 8 config("pdfium_config") { | 8 config("pdfium_config") { |
| 9 cflags = [] | 9 cflags = [] |
| 10 include_dirs = [ | 10 include_dirs = [ |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 sources = [ | 364 sources = [ |
| 365 "core/include/fxcodec/fx_codec.h", | 365 "core/include/fxcodec/fx_codec.h", |
| 366 "core/include/fxcodec/fx_codec_def.h", | 366 "core/include/fxcodec/fx_codec_def.h", |
| 367 "core/include/fxcodec/fx_codec_flate.h", | 367 "core/include/fxcodec/fx_codec_flate.h", |
| 368 "core/src/fxcodec/codec/codec_int.h", | 368 "core/src/fxcodec/codec/codec_int.h", |
| 369 "core/src/fxcodec/codec/fx_codec.cpp", | 369 "core/src/fxcodec/codec/fx_codec.cpp", |
| 370 "core/src/fxcodec/codec/fx_codec_fax.cpp", | 370 "core/src/fxcodec/codec/fx_codec_fax.cpp", |
| 371 "core/src/fxcodec/codec/fx_codec_flate.cpp", | 371 "core/src/fxcodec/codec/fx_codec_flate.cpp", |
| 372 "core/src/fxcodec/codec/fx_codec_icc.cpp", | 372 "core/src/fxcodec/codec/fx_codec_icc.cpp", |
| 373 "core/src/fxcodec/codec/fx_codec_jbig.cpp", | 373 "core/src/fxcodec/codec/fx_codec_jbig.cpp", |
| 374 "core/src/fxcodec/codec/fx_codec_jbig_enc.cpp", | |
| 375 "core/src/fxcodec/codec/fx_codec_jpeg.cpp", | 374 "core/src/fxcodec/codec/fx_codec_jpeg.cpp", |
| 376 "core/src/fxcodec/codec/fx_codec_jpx_opj.cpp", | 375 "core/src/fxcodec/codec/fx_codec_jpx_opj.cpp", |
| 377 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.cpp", | 376 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.cpp", |
| 378 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.h", | 377 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.h", |
| 379 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp", | 378 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp", |
| 380 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.h", | 379 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.h", |
| 381 "core/src/fxcodec/jbig2/JBig2_BitStream.cpp", | 380 "core/src/fxcodec/jbig2/JBig2_BitStream.cpp", |
| 382 "core/src/fxcodec/jbig2/JBig2_BitStream.h", | 381 "core/src/fxcodec/jbig2/JBig2_BitStream.h", |
| 383 "core/src/fxcodec/jbig2/JBig2_Context.cpp", | 382 "core/src/fxcodec/jbig2/JBig2_Context.cpp", |
| 384 "core/src/fxcodec/jbig2/JBig2_Context.h", | 383 "core/src/fxcodec/jbig2/JBig2_Context.h", |
| (...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 776 "//v8", | 775 "//v8", |
| 777 "//v8:v8_libplatform", | 776 "//v8:v8_libplatform", |
| 778 ] | 777 ] |
| 779 include_dirs += [ | 778 include_dirs += [ |
| 780 "//v8", | 779 "//v8", |
| 781 "//v8/include", | 780 "//v8/include", |
| 782 ] | 781 ] |
| 783 } | 782 } |
| 784 configs += [ ":pdfium_config" ] | 783 configs += [ ":pdfium_config" ] |
| 785 } | 784 } |
| OLD | NEW |