| 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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 "core/src/fxcodec/jbig2/JBig2_GeneralDecoder.cpp", | 401 "core/src/fxcodec/jbig2/JBig2_GeneralDecoder.cpp", |
| 402 "core/src/fxcodec/jbig2/JBig2_GeneralDecoder.h", | 402 "core/src/fxcodec/jbig2/JBig2_GeneralDecoder.h", |
| 403 "core/src/fxcodec/jbig2/JBig2_HuffmanDecoder.cpp", | 403 "core/src/fxcodec/jbig2/JBig2_HuffmanDecoder.cpp", |
| 404 "core/src/fxcodec/jbig2/JBig2_HuffmanDecoder.h", | 404 "core/src/fxcodec/jbig2/JBig2_HuffmanDecoder.h", |
| 405 "core/src/fxcodec/jbig2/JBig2_HuffmanTable.cpp", | 405 "core/src/fxcodec/jbig2/JBig2_HuffmanTable.cpp", |
| 406 "core/src/fxcodec/jbig2/JBig2_HuffmanTable.h", | 406 "core/src/fxcodec/jbig2/JBig2_HuffmanTable.h", |
| 407 "core/src/fxcodec/jbig2/JBig2_HuffmanTable_Standard.h", | 407 "core/src/fxcodec/jbig2/JBig2_HuffmanTable_Standard.h", |
| 408 "core/src/fxcodec/jbig2/JBig2_Image.cpp", | 408 "core/src/fxcodec/jbig2/JBig2_Image.cpp", |
| 409 "core/src/fxcodec/jbig2/JBig2_Image.h", | 409 "core/src/fxcodec/jbig2/JBig2_Image.h", |
| 410 "core/src/fxcodec/jbig2/JBig2_List.h", | 410 "core/src/fxcodec/jbig2/JBig2_List.h", |
| 411 "core/src/fxcodec/jbig2/JBig2_Module.h", | |
| 412 "core/src/fxcodec/jbig2/JBig2_Object.cpp", | |
| 413 "core/src/fxcodec/jbig2/JBig2_Object.h", | |
| 414 "core/src/fxcodec/jbig2/JBig2_Page.h", | 411 "core/src/fxcodec/jbig2/JBig2_Page.h", |
| 415 "core/src/fxcodec/jbig2/JBig2_PatternDict.cpp", | 412 "core/src/fxcodec/jbig2/JBig2_PatternDict.cpp", |
| 416 "core/src/fxcodec/jbig2/JBig2_PatternDict.h", | 413 "core/src/fxcodec/jbig2/JBig2_PatternDict.h", |
| 417 "core/src/fxcodec/jbig2/JBig2_Segment.cpp", | 414 "core/src/fxcodec/jbig2/JBig2_Segment.cpp", |
| 418 "core/src/fxcodec/jbig2/JBig2_Segment.h", | 415 "core/src/fxcodec/jbig2/JBig2_Segment.h", |
| 419 "core/src/fxcodec/jbig2/JBig2_SymbolDict.cpp", | 416 "core/src/fxcodec/jbig2/JBig2_SymbolDict.cpp", |
| 420 "core/src/fxcodec/jbig2/JBig2_SymbolDict.h", | 417 "core/src/fxcodec/jbig2/JBig2_SymbolDict.h", |
| 421 "core/src/fxcodec/lbmp/fx_bmp.cpp", | 418 "core/src/fxcodec/lbmp/fx_bmp.cpp", |
| 422 "core/src/fxcodec/lbmp/fx_bmp.h", | 419 "core/src/fxcodec/lbmp/fx_bmp.h", |
| 423 "core/src/fxcodec/lgif/fx_gif.cpp", | 420 "core/src/fxcodec/lgif/fx_gif.cpp", |
| (...skipping 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1476 ":pdfium" | 1473 ":pdfium" |
| 1477 ] | 1474 ] |
| 1478 include_dirs = [ | 1475 include_dirs = [ |
| 1479 ".", | 1476 ".", |
| 1480 "//v8", | 1477 "//v8", |
| 1481 "//v8/include", | 1478 "//v8/include", |
| 1482 ] | 1479 ] |
| 1483 configs -= [ "//build/config/compiler:chromium_code" ] | 1480 configs -= [ "//build/config/compiler:chromium_code" ] |
| 1484 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] | 1481 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 1485 } | 1482 } |
| OLD | NEW |