| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//build_overrides/v8.gni") | 5 import("//build_overrides/v8.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("pdfium.gni") | 7 import("pdfium.gni") |
| 8 | 8 |
| 9 config("pdfium_config") { | 9 config("pdfium_config") { |
| 10 cflags = [] | 10 cflags = [] |
| (...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 682 "core/fxge/fontdata/chromefontdata/FoxitSerifMM.cpp", | 682 "core/fxge/fontdata/chromefontdata/FoxitSerifMM.cpp", |
| 683 "core/fxge/fontdata/chromefontdata/FoxitSymbol.cpp", | 683 "core/fxge/fontdata/chromefontdata/FoxitSymbol.cpp", |
| 684 "core/fxge/fontdata/chromefontdata/chromefontdata.h", | 684 "core/fxge/fontdata/chromefontdata/chromefontdata.h", |
| 685 "core/fxge/freetype/fx_freetype.cpp", | 685 "core/fxge/freetype/fx_freetype.cpp", |
| 686 "core/fxge/ge/fx_ge.cpp", | 686 "core/fxge/ge/fx_ge.cpp", |
| 687 "core/fxge/ge/fx_ge_device.cpp", | 687 "core/fxge/ge/fx_ge_device.cpp", |
| 688 "core/fxge/ge/fx_ge_font.cpp", | 688 "core/fxge/ge/fx_ge_font.cpp", |
| 689 "core/fxge/ge/fx_ge_fontmap.cpp", | 689 "core/fxge/ge/fx_ge_fontmap.cpp", |
| 690 "core/fxge/ge/fx_ge_linux.cpp", | 690 "core/fxge/ge/fx_ge_linux.cpp", |
| 691 "core/fxge/ge/fx_ge_path.cpp", | 691 "core/fxge/ge/fx_ge_path.cpp", |
| 692 "core/fxge/ge/fx_ge_ps.cpp", | |
| 693 "core/fxge/ge/fx_ge_text.cpp", | 692 "core/fxge/ge/fx_ge_text.cpp", |
| 694 "core/fxge/ge/fx_text_int.h", | 693 "core/fxge/ge/fx_text_int.h", |
| 695 "core/fxge/include/fx_dib.h", | 694 "core/fxge/include/fx_dib.h", |
| 696 "core/fxge/include/fx_font.h", | 695 "core/fxge/include/fx_font.h", |
| 697 "core/fxge/include/fx_freetype.h", | 696 "core/fxge/include/fx_freetype.h", |
| 698 "core/fxge/include/fx_ge.h", | 697 "core/fxge/include/fx_ge.h", |
| 699 "core/fxge/include/fx_ge_apple.h", | 698 "core/fxge/include/fx_ge_apple.h", |
| 700 "core/fxge/include/fx_ge_win32.h", | 699 "core/fxge/include/fx_ge_win32.h", |
| 701 ] | 700 ] |
| 702 | 701 |
| (...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1707 } | 1706 } |
| 1708 | 1707 |
| 1709 if (pdf_is_standalone) { | 1708 if (pdf_is_standalone) { |
| 1710 source_set("samples") { | 1709 source_set("samples") { |
| 1711 testonly = true | 1710 testonly = true |
| 1712 deps = [ | 1711 deps = [ |
| 1713 "//samples", | 1712 "//samples", |
| 1714 ] | 1713 ] |
| 1715 } | 1714 } |
| 1716 } | 1715 } |
| OLD | NEW |