| 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 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 "core/include/fxcrt/fx_basic.h", | 483 "core/include/fxcrt/fx_basic.h", |
| 484 "core/include/fxcrt/fx_coordinates.h", | 484 "core/include/fxcrt/fx_coordinates.h", |
| 485 "core/include/fxcrt/fx_ext.h", | 485 "core/include/fxcrt/fx_ext.h", |
| 486 "core/include/fxcrt/fx_memory.h", | 486 "core/include/fxcrt/fx_memory.h", |
| 487 "core/include/fxcrt/fx_stream.h", | 487 "core/include/fxcrt/fx_stream.h", |
| 488 "core/include/fxcrt/fx_string.h", | 488 "core/include/fxcrt/fx_string.h", |
| 489 "core/include/fxcrt/fx_system.h", | 489 "core/include/fxcrt/fx_system.h", |
| 490 "core/include/fxcrt/fx_ucd.h", | 490 "core/include/fxcrt/fx_ucd.h", |
| 491 "core/include/fxcrt/fx_xml.h", | 491 "core/include/fxcrt/fx_xml.h", |
| 492 "core/src/fxcrt/extension.h", | 492 "core/src/fxcrt/extension.h", |
| 493 "core/src/fxcrt/fx_safe_types.h", |
| 493 "core/src/fxcrt/fxcrt_platforms.cpp", | 494 "core/src/fxcrt/fxcrt_platforms.cpp", |
| 494 "core/src/fxcrt/fxcrt_platforms.h", | 495 "core/src/fxcrt/fxcrt_platforms.h", |
| 495 "core/src/fxcrt/fxcrt_posix.cpp", | 496 "core/src/fxcrt/fxcrt_posix.cpp", |
| 496 "core/src/fxcrt/fxcrt_posix.h", | 497 "core/src/fxcrt/fxcrt_posix.h", |
| 497 "core/src/fxcrt/fxcrt_windows.cpp", | 498 "core/src/fxcrt/fxcrt_windows.cpp", |
| 498 "core/src/fxcrt/fxcrt_windows.h", | 499 "core/src/fxcrt/fxcrt_windows.h", |
| 499 "core/src/fxcrt/fx_arabic.cpp", | 500 "core/src/fxcrt/fx_arabic.cpp", |
| 500 "core/src/fxcrt/fx_arabic.h", | 501 "core/src/fxcrt/fx_arabic.h", |
| 501 "core/src/fxcrt/fx_basic_array.cpp", | 502 "core/src/fxcrt/fx_basic_array.cpp", |
| 502 "core/src/fxcrt/fx_basic_bstring.cpp", | 503 "core/src/fxcrt/fx_basic_bstring.cpp", |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 830 "testing/fx_string_testhelpers.h", | 831 "testing/fx_string_testhelpers.h", |
| 831 ] | 832 ] |
| 832 deps = [ | 833 deps = [ |
| 833 "//testing/gtest", | 834 "//testing/gtest", |
| 834 ":pdfium" | 835 ":pdfium" |
| 835 ] | 836 ] |
| 836 include_dirs = [ "." ] | 837 include_dirs = [ "." ] |
| 837 configs -= [ "//build/config/compiler:chromium_code" ] | 838 configs -= [ "//build/config/compiler:chromium_code" ] |
| 838 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] | 839 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 839 } | 840 } |
| OLD | NEW |