| 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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 "core/include/fxcodec/fx_codec_def.h", | 379 "core/include/fxcodec/fx_codec_def.h", |
| 380 "core/include/fxcodec/fx_codec_flate.h", | 380 "core/include/fxcodec/fx_codec_flate.h", |
| 381 "core/src/fxcodec/codec/codec_int.h", | 381 "core/src/fxcodec/codec/codec_int.h", |
| 382 "core/src/fxcodec/codec/fx_codec.cpp", | 382 "core/src/fxcodec/codec/fx_codec.cpp", |
| 383 "core/src/fxcodec/codec/fx_codec_bmp.cpp", | 383 "core/src/fxcodec/codec/fx_codec_bmp.cpp", |
| 384 "core/src/fxcodec/codec/fx_codec_fax.cpp", | 384 "core/src/fxcodec/codec/fx_codec_fax.cpp", |
| 385 "core/src/fxcodec/codec/fx_codec_flate.cpp", | 385 "core/src/fxcodec/codec/fx_codec_flate.cpp", |
| 386 "core/src/fxcodec/codec/fx_codec_gif.cpp", | 386 "core/src/fxcodec/codec/fx_codec_gif.cpp", |
| 387 "core/src/fxcodec/codec/fx_codec_icc.cpp", | 387 "core/src/fxcodec/codec/fx_codec_icc.cpp", |
| 388 "core/src/fxcodec/codec/fx_codec_jbig.cpp", | 388 "core/src/fxcodec/codec/fx_codec_jbig.cpp", |
| 389 "core/src/fxcodec/codec/fx_codec_jbig_enc.cpp", | |
| 390 "core/src/fxcodec/codec/fx_codec_jpeg.cpp", | 389 "core/src/fxcodec/codec/fx_codec_jpeg.cpp", |
| 391 "core/src/fxcodec/codec/fx_codec_jpx_opj.cpp", | 390 "core/src/fxcodec/codec/fx_codec_jpx_opj.cpp", |
| 392 "core/src/fxcodec/codec/fx_codec_png.cpp", | 391 "core/src/fxcodec/codec/fx_codec_png.cpp", |
| 393 "core/src/fxcodec/codec/fx_codec_progress.cpp", | 392 "core/src/fxcodec/codec/fx_codec_progress.cpp", |
| 394 "core/src/fxcodec/codec/fx_codec_progress.h", | 393 "core/src/fxcodec/codec/fx_codec_progress.h", |
| 395 "core/src/fxcodec/codec/fx_codec_tiff.cpp", | 394 "core/src/fxcodec/codec/fx_codec_tiff.cpp", |
| 396 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.cpp", | 395 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.cpp", |
| 397 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.h", | 396 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.h", |
| 398 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp", | 397 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp", |
| 399 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.h", | 398 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.h", |
| (...skipping 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1504 "//v8", | 1503 "//v8", |
| 1505 "//v8:v8_libplatform", | 1504 "//v8:v8_libplatform", |
| 1506 ] | 1505 ] |
| 1507 include_dirs += [ | 1506 include_dirs += [ |
| 1508 "//v8", | 1507 "//v8", |
| 1509 "//v8/include", | 1508 "//v8/include", |
| 1510 ] | 1509 ] |
| 1511 } | 1510 } |
| 1512 configs += [ ":pdfium_config" ] | 1511 configs += [ ":pdfium_config" ] |
| 1513 } | 1512 } |
| OLD | NEW |