| 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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 "core/src/fxcodec/fx_tiff/src/fx_tif_thunder.c", | 387 "core/src/fxcodec/fx_tiff/src/fx_tif_thunder.c", |
| 388 "core/src/fxcodec/fx_tiff/src/fx_tif_tile.c", | 388 "core/src/fxcodec/fx_tiff/src/fx_tif_tile.c", |
| 389 "core/src/fxcodec/fx_tiff/src/fx_tif_version.c", | 389 "core/src/fxcodec/fx_tiff/src/fx_tif_version.c", |
| 390 "core/src/fxcodec/fx_tiff/src/fx_tif_warning.c", | 390 "core/src/fxcodec/fx_tiff/src/fx_tif_warning.c", |
| 391 "core/src/fxcodec/fx_tiff/src/fx_tif_write.c", | 391 "core/src/fxcodec/fx_tiff/src/fx_tif_write.c", |
| 392 "core/src/fxcodec/fx_tiff/src/fx_tif_zip.c", | 392 "core/src/fxcodec/fx_tiff/src/fx_tif_zip.c", |
| 393 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.cpp", | 393 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.cpp", |
| 394 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.h", | 394 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.h", |
| 395 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp", | 395 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp", |
| 396 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.h", | 396 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.h", |
| 397 "core/src/fxcodec/jbig2/JBig2_BitStream.cpp", |
| 397 "core/src/fxcodec/jbig2/JBig2_BitStream.h", | 398 "core/src/fxcodec/jbig2/JBig2_BitStream.h", |
| 398 "core/src/fxcodec/jbig2/JBig2_Context.cpp", | 399 "core/src/fxcodec/jbig2/JBig2_Context.cpp", |
| 399 "core/src/fxcodec/jbig2/JBig2_Context.h", | 400 "core/src/fxcodec/jbig2/JBig2_Context.h", |
| 400 "core/src/fxcodec/jbig2/JBig2_Define.h", | 401 "core/src/fxcodec/jbig2/JBig2_Define.h", |
| 401 "core/src/fxcodec/jbig2/JBig2_GrdProc.cpp", | 402 "core/src/fxcodec/jbig2/JBig2_GrdProc.cpp", |
| 402 "core/src/fxcodec/jbig2/JBig2_GrdProc.h", | 403 "core/src/fxcodec/jbig2/JBig2_GrdProc.h", |
| 403 "core/src/fxcodec/jbig2/JBig2_GrrdProc.cpp", | 404 "core/src/fxcodec/jbig2/JBig2_GrrdProc.cpp", |
| 404 "core/src/fxcodec/jbig2/JBig2_GrrdProc.h", | 405 "core/src/fxcodec/jbig2/JBig2_GrrdProc.h", |
| 405 "core/src/fxcodec/jbig2/JBig2_GsidProc.cpp", | 406 "core/src/fxcodec/jbig2/JBig2_GsidProc.cpp", |
| 406 "core/src/fxcodec/jbig2/JBig2_GsidProc.h", | 407 "core/src/fxcodec/jbig2/JBig2_GsidProc.h", |
| (...skipping 1079 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1486 ":pdfium" | 1487 ":pdfium" |
| 1487 ] | 1488 ] |
| 1488 include_dirs = [ | 1489 include_dirs = [ |
| 1489 ".", | 1490 ".", |
| 1490 "//v8", | 1491 "//v8", |
| 1491 "//v8/include", | 1492 "//v8/include", |
| 1492 ] | 1493 ] |
| 1493 configs -= [ "//build/config/compiler:chromium_code" ] | 1494 configs -= [ "//build/config/compiler:chromium_code" ] |
| 1494 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] | 1495 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 1495 } | 1496 } |
| OLD | NEW |