OLD | NEW |
1 { | 1 { |
2 'variables': { | 2 'variables': { |
3 'pdf_use_skia%': 0, | 3 'pdf_use_skia%': 0, |
4 }, | 4 }, |
5 'target_defaults': { | 5 'target_defaults': { |
6 'defines' : [ | 6 'defines' : [ |
7 'FT2_BUILD_LIBRARY', | 7 'FT2_BUILD_LIBRARY', |
8 '_FPDFSDK_LIB', | 8 '_FPDFSDK_LIB', |
9 '_NO_GDIPLUS_', # workaround text rendering issues on Windows | 9 '_NO_GDIPLUS_', # workaround text rendering issues on Windows |
10 'OPJ_STATIC', | 10 'OPJ_STATIC', |
(...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
876 'fpdfsdk/src/formfiller/FFL_FormFiller.cpp', | 876 'fpdfsdk/src/formfiller/FFL_FormFiller.cpp', |
877 'fpdfsdk/src/formfiller/FFL_IFormFiller.cpp', | 877 'fpdfsdk/src/formfiller/FFL_IFormFiller.cpp', |
878 'fpdfsdk/src/formfiller/FFL_ListBox.cpp', | 878 'fpdfsdk/src/formfiller/FFL_ListBox.cpp', |
879 'fpdfsdk/src/formfiller/FFL_Notify.cpp', | 879 'fpdfsdk/src/formfiller/FFL_Notify.cpp', |
880 'fpdfsdk/src/formfiller/FFL_PushButton.cpp', | 880 'fpdfsdk/src/formfiller/FFL_PushButton.cpp', |
881 'fpdfsdk/src/formfiller/FFL_RadioButton.cpp', | 881 'fpdfsdk/src/formfiller/FFL_RadioButton.cpp', |
882 'fpdfsdk/src/formfiller/FFL_TextField.cpp', | 882 'fpdfsdk/src/formfiller/FFL_TextField.cpp', |
883 'fpdfsdk/src/formfiller/FFL_Utils.cpp', | 883 'fpdfsdk/src/formfiller/FFL_Utils.cpp', |
884 ], | 884 ], |
885 }, | 885 }, |
| 886 { |
| 887 'target_name': 'pdfium_unittests', |
| 888 'type': 'executable', |
| 889 'dependencies': [ |
| 890 '<(DEPTH)/testing/gtest.gyp:gtest_main', |
| 891 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 892 'pdfium', |
| 893 ], |
| 894 'include_dirs': [ |
| 895 '<(DEPTH)' |
| 896 ], |
| 897 'sources': [ |
| 898 'core/src/fxcrt/fx_basic_bstring_unittest.cpp', |
| 899 ], |
| 900 }, |
886 ], | 901 ], |
887 } | 902 } |
OLD | NEW |