diff options
author | Thorsten Behrens <thorsten.behrens@allotropia.de> | 2022-04-27 15:36:25 +0000 |
---|---|---|
committer | Thorsten Behrens <thorsten.behrens@allotropia.de> | 2022-11-30 23:57:54 +0100 |
commit | ce60a3dd4dbff0dcb5b82c9053ae5d90f8ac929d (patch) | |
tree | afb86725d12f61cb9cb92da9e8719866ccaf6289 /desktop | |
parent | baf7b40445f1ef681d9e64a825dd34f7a8117076 (diff) |
Add LOKit functions and whitelist export for it to WASM
For calling into LOWA from native JS, make lokit functions available
Change-Id: I6458806f33131e48692f35f2a2438b35efb1f06c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143497
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/Executable_soffice_bin.mk | 8 | ||||
-rw-r--r-- | desktop/Library_sofficeapp.mk | 9 |
2 files changed, 9 insertions, 8 deletions
diff --git a/desktop/Executable_soffice_bin.mk b/desktop/Executable_soffice_bin.mk index a3c3ff258613..ce908c1be318 100644 --- a/desktop/Executable_soffice_bin.mk +++ b/desktop/Executable_soffice_bin.mk @@ -47,4 +47,12 @@ endif endif +ifeq ($(OS),EMSCRIPTEN) + +$(eval $(call gb_Executable_add_ldflags,soffice_bin,\ + -s EXPORTED_FUNCTIONS=["_main"$(COMMA)"_libreofficekit_hook"$(COMMA)"_libreofficekit_hook_2"$(COMMA)"_lok_preinit"$(COMMA)"_lok_preinit_2"] \ +)) + +endif + # vim: set ts=4 sw=4 et: diff --git a/desktop/Library_sofficeapp.mk b/desktop/Library_sofficeapp.mk index 70f4b07ea045..c315a113ca89 100644 --- a/desktop/Library_sofficeapp.mk +++ b/desktop/Library_sofficeapp.mk @@ -137,20 +137,13 @@ $(eval $(call gb_Library_add_exception_objects,sofficeapp,\ desktop/source/lib/lokandroid) \ )) else -ifeq ($(USING_X11),TRUE) +ifneq ($(filter TRUE,$(USING_X11) $(DISABLE_GUI))($filter EMSCRIPTEN,$(OS)),) $(eval $(call gb_Library_add_exception_objects,sofficeapp,\ desktop/source/lib/init \ desktop/source/lib/lokinteractionhandler \ desktop/source/lib/lokclipboard \ )) endif -ifeq ($(DISABLE_GUI),TRUE) -$(eval $(call gb_Library_add_exception_objects,sofficeapp,\ - desktop/source/lib/init \ - desktop/source/lib/lokinteractionhandler \ - desktop/source/lib/lokclipboard \ -)) -endif endif # vim: set ts=4 sw=4 et: |