Chromium Code Reviews| 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/fpf_skiafont.cpp", | |
| 750 "core/fxge/android/fpf_skiafont.h", | |
| 751 "core/fxge/android/fpf_skiafontmgr.cpp", | |
| 752 "core/fxge/android/fpf_skiafontmgr.h", | |
| 753 "core/fxge/android/fpf_skiamodule.cpp", | |
| 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", | |
| 758 "core/fxge/apple/apple_int.h", | 749 "core/fxge/apple/apple_int.h", |
| 759 "core/fxge/apple/cfx_quartzdevice.h", | 750 "core/fxge/apple/cfx_quartzdevice.h", |
| 760 "core/fxge/apple/fx_mac_imp.cpp", | 751 "core/fxge/apple/fx_mac_imp.cpp", |
| 761 "core/fxge/apple/fx_quartz_device.cpp", | 752 "core/fxge/apple/fx_quartz_device.cpp", |
| 762 "core/fxge/cfx_facecache.h", | 753 "core/fxge/cfx_facecache.h", |
| 763 "core/fxge/cfx_fontcache.h", | 754 "core/fxge/cfx_fontcache.h", |
| 764 "core/fxge/cfx_fontmapper.h", | 755 "core/fxge/cfx_fontmapper.h", |
| 765 "core/fxge/cfx_fontmgr.h", | 756 "core/fxge/cfx_fontmgr.h", |
| 766 "core/fxge/cfx_fxgedevice.h", | 757 "core/fxge/cfx_fxgedevice.h", |
| 767 "core/fxge/cfx_gemodule.h", | 758 "core/fxge/cfx_gemodule.h", |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 860 "core/fxge/win32/dwrite_int.h", | 851 "core/fxge/win32/dwrite_int.h", |
| 861 "core/fxge/win32/fx_win32_device.cpp", | 852 "core/fxge/win32/fx_win32_device.cpp", |
| 862 "core/fxge/win32/fx_win32_dib.cpp", | 853 "core/fxge/win32/fx_win32_dib.cpp", |
| 863 "core/fxge/win32/fx_win32_dwrite.cpp", | 854 "core/fxge/win32/fx_win32_dwrite.cpp", |
| 864 "core/fxge/win32/fx_win32_gdipext.cpp", | 855 "core/fxge/win32/fx_win32_gdipext.cpp", |
| 865 "core/fxge/win32/fx_win32_print.cpp", | 856 "core/fxge/win32/fx_win32_print.cpp", |
| 866 "core/fxge/win32/win32_int.h", | 857 "core/fxge/win32/win32_int.h", |
| 867 ] | 858 ] |
| 868 configs -= [ "//build/config/win:lean_and_mean" ] | 859 configs -= [ "//build/config/win:lean_and_mean" ] |
| 869 } | 860 } |
| 861 | |
| 862 if (is_android) { | |
|
Lei Zhang
2016/10/14 19:46:05
I don't think this is necessary. I believe some de
npm
2016/10/17 15:02:25
I do not
| |
| 863 sources += [ | |
| 864 "core/fxge/android/fpf_skiafont.cpp", | |
| 865 "core/fxge/android/fpf_skiafont.h", | |
| 866 "core/fxge/android/fpf_skiafontmgr.cpp", | |
| 867 "core/fxge/android/fpf_skiafontmgr.h", | |
| 868 "core/fxge/android/fpf_skiamodule.cpp", | |
| 869 "core/fxge/android/fpf_skiamodule.h", | |
| 870 "core/fxge/android/fx_android_font.cpp", | |
| 871 "core/fxge/android/fx_android_font.h", | |
| 872 "core/fxge/android/fx_android_imp.cpp", | |
| 873 ] | |
| 874 } | |
| 870 } | 875 } |
| 871 | 876 |
| 872 static_library("fxedit") { | 877 static_library("fxedit") { |
| 873 sources = [ | 878 sources = [ |
| 874 "fpdfsdk/fxedit/fx_edit.h", | 879 "fpdfsdk/fxedit/fx_edit.h", |
| 875 "fpdfsdk/fxedit/fxet_ap.cpp", | 880 "fpdfsdk/fxedit/fxet_ap.cpp", |
| 876 "fpdfsdk/fxedit/fxet_edit.cpp", | 881 "fpdfsdk/fxedit/fxet_edit.cpp", |
| 877 "fpdfsdk/fxedit/fxet_edit.h", | 882 "fpdfsdk/fxedit/fxet_edit.h", |
| 878 "fpdfsdk/fxedit/fxet_list.cpp", | 883 "fpdfsdk/fxedit/fxet_list.cpp", |
| 879 "fpdfsdk/fxedit/fxet_list.h", | 884 "fpdfsdk/fxedit/fxet_list.h", |
| (...skipping 877 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1757 } | 1762 } |
| 1758 | 1763 |
| 1759 if (pdf_is_standalone) { | 1764 if (pdf_is_standalone) { |
| 1760 source_set("samples") { | 1765 source_set("samples") { |
| 1761 testonly = true | 1766 testonly = true |
| 1762 deps = [ | 1767 deps = [ |
| 1763 "//samples", | 1768 "//samples", |
| 1764 ] | 1769 ] |
| 1765 } | 1770 } |
| 1766 } | 1771 } |
| OLD | NEW |