diff options
author | dsinclair <dsinclair@chromium.org> | 2016-03-31 20:03:08 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-31 20:03:08 -0700 |
commit | 777b333109db7fceb5f2ca1fc521ced7f863fa18 (patch) | |
tree | f5968b42f43c90bc20af39a845718877cf80e064 /pdfium.gyp | |
parent | 47ca692c8150cb39abef5737e866b91e6a105b80 (diff) | |
download | pdfium-777b333109db7fceb5f2ca1fc521ced7f863fa18.tar.xz |
Split core/include/fpdfdoc/fpdf_ap.h
This CL splits the fpdf_ap.h file apart into individual pieces and moves the
implementations to their own CPP files.
Review URL: https://codereview.chromium.org/1840413002
Diffstat (limited to 'pdfium.gyp')
-rw-r--r-- | pdfium.gyp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/pdfium.gyp b/pdfium.gyp index ed6003ed81..7b53772fd4 100644 --- a/pdfium.gyp +++ b/pdfium.gyp @@ -219,10 +219,17 @@ 'target_name': 'fpdfdoc', 'type': 'static_library', 'sources': [ - 'core/include/fpdfdoc/fpdf_ap.h', 'core/include/fpdfdoc/fpdf_doc.h', 'core/include/fpdfdoc/fpdf_tagged.h', 'core/include/fpdfdoc/fpdf_vt.h', + 'core/fpdfdoc/cpvt_color.cpp', + 'core/fpdfdoc/cpvt_color.h', + 'core/fpdfdoc/cpvt_dash.h', + 'core/fpdfdoc/cpvt_fontmap.cpp', + 'core/fpdfdoc/cpvt_fontmap.h', + 'core/fpdfdoc/cpvt_generateap.cpp', + 'core/fpdfdoc/cpvt_generateap.h', + 'core/fpdfdoc/cpvt_provider.h', 'core/fpdfdoc/doc_action.cpp', 'core/fpdfdoc/doc_annot.cpp', 'core/fpdfdoc/doc_ap.cpp', @@ -240,6 +247,9 @@ 'core/fpdfdoc/doc_viewerPreferences.cpp', 'core/fpdfdoc/doc_vt.cpp', 'core/fpdfdoc/doc_vtmodule.cpp', + 'core/fpdfdoc/include/ipdf_variabletext_provider.h', + 'core/fpdfdoc/ipdf_variabletext_provider.cpp', + 'core/fpdfdoc/ipvt_fontmap.h', 'core/fpdfdoc/pdf_vt.h', 'core/fpdfdoc/tagged_int.h', ], |