| 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 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 "core/fxcrt/fx_arabic.cpp", | 739 "core/fxcrt/fx_arabic.cpp", |
| 740 "core/fxcrt/fx_arabic.h", | 740 "core/fxcrt/fx_arabic.h", |
| 741 "core/fxcrt/fx_arb.h", | 741 "core/fxcrt/fx_arb.h", |
| 742 "core/fxcrt/fx_basic_maps.cpp", | 742 "core/fxcrt/fx_basic_maps.cpp", |
| 743 ] | 743 ] |
| 744 } | 744 } |
| 745 } | 745 } |
| 746 | 746 |
| 747 static_library("fxge") { | 747 static_library("fxge") { |
| 748 sources = [ | 748 sources = [ |
| 749 "core/fxge/android/cfpf_skiabufferfont.h", |
| 750 "core/fxge/android/cfpf_skiadevicemodule.cpp", |
| 751 "core/fxge/android/cfpf_skiadevicemodule.h", |
| 752 "core/fxge/android/cfpf_skiafilefont.h", |
| 753 "core/fxge/android/cfpf_skiafont.cpp", |
| 754 "core/fxge/android/cfpf_skiafont.h", |
| 755 "core/fxge/android/cfpf_skiafontdescriptor.h", |
| 749 "core/fxge/android/cfpf_skiafontmgr.cpp", | 756 "core/fxge/android/cfpf_skiafontmgr.cpp", |
| 750 "core/fxge/android/fpf_skiafont.cpp", | 757 "core/fxge/android/cfpf_skiafontmgr.h", |
| 751 "core/fxge/android/fpf_skiafont.h", | 758 "core/fxge/android/cfpf_skiapathfont.h", |
| 752 "core/fxge/android/fpf_skiafontmgr.h", | 759 "core/fxge/android/cfx_androidfontinfo.cpp", |
| 753 "core/fxge/android/fpf_skiamodule.cpp", | 760 "core/fxge/android/cfx_androidfontinfo.h", |
| 754 "core/fxge/android/fpf_skiamodule.h", | |
| 755 "core/fxge/android/fx_android_font.cpp", | |
| 756 "core/fxge/android/fx_android_font.h", | |
| 757 "core/fxge/android/fx_android_imp.cpp", | 761 "core/fxge/android/fx_android_imp.cpp", |
| 758 "core/fxge/apple/apple_int.h", | 762 "core/fxge/apple/apple_int.h", |
| 759 "core/fxge/apple/cfx_quartzdevice.h", | 763 "core/fxge/apple/cfx_quartzdevice.h", |
| 760 "core/fxge/apple/fx_mac_imp.cpp", | 764 "core/fxge/apple/fx_mac_imp.cpp", |
| 761 "core/fxge/apple/fx_quartz_device.cpp", | 765 "core/fxge/apple/fx_quartz_device.cpp", |
| 762 "core/fxge/cfx_facecache.h", | 766 "core/fxge/cfx_facecache.h", |
| 763 "core/fxge/cfx_fontcache.h", | 767 "core/fxge/cfx_fontcache.h", |
| 764 "core/fxge/cfx_fontmapper.h", | 768 "core/fxge/cfx_fontmapper.h", |
| 765 "core/fxge/cfx_fontmgr.h", | 769 "core/fxge/cfx_fontmgr.h", |
| 766 "core/fxge/cfx_fxgedevice.h", | 770 "core/fxge/cfx_fxgedevice.h", |
| (...skipping 983 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1750 } | 1754 } |
| 1751 | 1755 |
| 1752 if (pdf_is_standalone) { | 1756 if (pdf_is_standalone) { |
| 1753 source_set("samples") { | 1757 source_set("samples") { |
| 1754 testonly = true | 1758 testonly = true |
| 1755 deps = [ | 1759 deps = [ |
| 1756 "//samples", | 1760 "//samples", |
| 1757 ] | 1761 ] |
| 1758 } | 1762 } |
| 1759 } | 1763 } |
| OLD | NEW |