diff options
author | dsinclair <dsinclair@chromium.org> | 2016-09-14 07:01:54 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-09-14 07:01:54 -0700 |
commit | a440bb3f11f42b7a22624e9771dd8d9c57075f06 (patch) | |
tree | c3dfde4e22bb2a2c4413e55d11dc89daaa1a3fb2 /BUILD.gn | |
parent | f2662c4a0bdfbe52d961ab4d2ff9a448323c3af9 (diff) | |
download | pdfium-a440bb3f11f42b7a22624e9771dd8d9c57075f06.tar.xz |
Split CPDFXFA_Document apart
[DO NOT COMMIT]
This CL renames IXFA_DocProvider to IXFA_DocEnvironment to better describe the
purpose. Then, CPDFXFA_Document has all of the IXFA_DocEnvironment methods
removed and placed in CPDFXFA_DocEnvironment. The CPDFXFA_Document then
has a CPDFXFA_DocEnvironment.
This splits the code related to the document apart from the XFA callback methods
to work with that document.
Review-Url: https://codereview.chromium.org/2328573002
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1049,10 +1049,12 @@ if (pdf_enable_v8) { if (pdf_enable_xfa) { static_library("fpdfxfa") { sources = [ + "fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.cpp", "fpdfsdk/fpdfxfa/fpdfxfa_app.cpp", "fpdfsdk/fpdfxfa/fpdfxfa_doc.cpp", "fpdfsdk/fpdfxfa/fpdfxfa_page.cpp", "fpdfsdk/fpdfxfa/fpdfxfa_util.cpp", + "fpdfsdk/fpdfxfa/include/cpdfxfa_docenvironment.h", "fpdfsdk/fpdfxfa/include/fpdfxfa_app.h", "fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h", "fpdfsdk/fpdfxfa/include/fpdfxfa_page.h", |