| 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_common_config") { | 9 config("pdfium_common_config") { |
| 10 cflags = [] | 10 cflags = [] |
| (...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 685 "core/fxge/fontdata/chromefontdata/FoxitSansItalic.cpp", | 685 "core/fxge/fontdata/chromefontdata/FoxitSansItalic.cpp", |
| 686 "core/fxge/fontdata/chromefontdata/FoxitSansMM.cpp", | 686 "core/fxge/fontdata/chromefontdata/FoxitSansMM.cpp", |
| 687 "core/fxge/fontdata/chromefontdata/FoxitSerif.cpp", | 687 "core/fxge/fontdata/chromefontdata/FoxitSerif.cpp", |
| 688 "core/fxge/fontdata/chromefontdata/FoxitSerifBold.cpp", | 688 "core/fxge/fontdata/chromefontdata/FoxitSerifBold.cpp", |
| 689 "core/fxge/fontdata/chromefontdata/FoxitSerifBoldItalic.cpp", | 689 "core/fxge/fontdata/chromefontdata/FoxitSerifBoldItalic.cpp", |
| 690 "core/fxge/fontdata/chromefontdata/FoxitSerifItalic.cpp", | 690 "core/fxge/fontdata/chromefontdata/FoxitSerifItalic.cpp", |
| 691 "core/fxge/fontdata/chromefontdata/FoxitSerifMM.cpp", | 691 "core/fxge/fontdata/chromefontdata/FoxitSerifMM.cpp", |
| 692 "core/fxge/fontdata/chromefontdata/FoxitSymbol.cpp", | 692 "core/fxge/fontdata/chromefontdata/FoxitSymbol.cpp", |
| 693 "core/fxge/fontdata/chromefontdata/chromefontdata.h", | 693 "core/fxge/fontdata/chromefontdata/chromefontdata.h", |
| 694 "core/fxge/freetype/fx_freetype.cpp", | 694 "core/fxge/freetype/fx_freetype.cpp", |
| 695 "core/fxge/ge/cfx_folderfontinfo.cpp", |
| 696 "core/fxge/ge/cfx_fontmapper.cpp", |
| 697 "core/fxge/ge/cfx_fontmgr.cpp", |
| 695 "core/fxge/ge/fx_ge.cpp", | 698 "core/fxge/ge/fx_ge.cpp", |
| 696 "core/fxge/ge/fx_ge_device.cpp", | 699 "core/fxge/ge/fx_ge_device.cpp", |
| 697 "core/fxge/ge/fx_ge_font.cpp", | 700 "core/fxge/ge/fx_ge_font.cpp", |
| 698 "core/fxge/ge/fx_ge_fontmap.cpp", | 701 "core/fxge/ge/fx_ge_fontmap.cpp", |
| 699 "core/fxge/ge/fx_ge_linux.cpp", | 702 "core/fxge/ge/fx_ge_linux.cpp", |
| 700 "core/fxge/ge/fx_ge_path.cpp", | 703 "core/fxge/ge/fx_ge_path.cpp", |
| 701 "core/fxge/ge/fx_ge_text.cpp", | 704 "core/fxge/ge/fx_ge_text.cpp", |
| 702 "core/fxge/ge/fx_text_int.h", | 705 "core/fxge/ge/fx_text_int.h", |
| 703 "core/fxge/ifx_renderdevicedriver.cpp", | 706 "core/fxge/ifx_renderdevicedriver.cpp", |
| 704 "core/fxge/include/fx_dib.h", | 707 "core/fxge/include/fx_dib.h", |
| (...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1606 } | 1609 } |
| 1607 | 1610 |
| 1608 if (pdf_is_standalone) { | 1611 if (pdf_is_standalone) { |
| 1609 source_set("samples") { | 1612 source_set("samples") { |
| 1610 testonly = true | 1613 testonly = true |
| 1611 deps = [ | 1614 deps = [ |
| 1612 "//samples", | 1615 "//samples", |
| 1613 ] | 1616 ] |
| 1614 } | 1617 } |
| 1615 } | 1618 } |
| OLD | NEW |