36 lines
920 B
Diff
36 lines
920 B
Diff
diff --git BUILD.gn BUILD.gn
|
|
index b6b33f1..d80ead9 100644
|
|
--- BUILD.gn
|
|
+++ BUILD.gn
|
|
@@ -181,6 +181,10 @@ static_library("pdfium") {
|
|
} else {
|
|
libs += [ "freetype" ]
|
|
}
|
|
+
|
|
+ include_dirs = [
|
|
+ "//v8/include",
|
|
+ ]
|
|
}
|
|
|
|
static_library("test_support") {
|
|
diff --git fpdfsdk/fpdfview.cpp fpdfsdk/fpdfview.cpp
|
|
index 001ebb0..8b2b6cc 100644
|
|
--- fpdfsdk/fpdfview.cpp
|
|
+++ fpdfsdk/fpdfview.cpp
|
|
@@ -30,6 +30,7 @@
|
|
#include "fpdfsdk/fsdk_define.h"
|
|
#include "fpdfsdk/fsdk_pauseadapter.h"
|
|
#include "fpdfsdk/javascript/ijs_runtime.h"
|
|
+#include "fxjs/fxjs_v8.h"
|
|
#include "public/fpdf_ext.h"
|
|
#include "public/fpdf_progressive.h"
|
|
#include "third_party/base/numerics/safe_conversions_impl.h"
|
|
@@ -299,6 +300,7 @@ DLLEXPORT void STDCALL FPDF_DestroyLibrary() {
|
|
#endif // PDF_ENABLE_XFA
|
|
CPDF_ModuleMgr::Destroy();
|
|
CFX_GEModule::Destroy();
|
|
+ FXJS_Release();
|
|
|
|
delete g_pCodecModule;
|
|
g_pCodecModule = nullptr;
|