summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--android/experimental/desktop/Makefile2
-rwxr-xr-xsolenv/bin/native-code.py12
2 files changed, 13 insertions, 1 deletions
diff --git a/android/experimental/desktop/Makefile b/android/experimental/desktop/Makefile
index 3419eb1ceb7e..df9a24f08fff 100644
--- a/android/experimental/desktop/Makefile
+++ b/android/experimental/desktop/Makefile
@@ -13,7 +13,7 @@ include $(BOOTSTRAPDIR)/Makefile.shared
native-code.cxx: $(SRCDIR)/solenv/bin/native-code.py
$< -j \
- -g core -g writer \
+ -g core -g edit -g writer \
> $@
# The name of the Bootstrap activity class
diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py
index 56c0c71ca18b..4bd729b5e603 100755
--- a/solenv/bin/native-code.py
+++ b/solenv/bin/native-code.py
@@ -108,6 +108,16 @@ core_constructor_list = [
"XMLVersionListPersistence_get_implementation",
]
+# edit group for apps, where you can edit documents
+edit_factory_list = [
+ ]
+
+edit_constructor_list = [
+ "com_sun_star_comp_framework_GlobalAcceleratorConfiguration_get_implementation",
+ "com_sun_star_i18n_InputSequenceChecker_get_implementation",
+ "com_sun_star_i18n_OrdinalSuffix_get_implementation",
+ ]
+
calc_factory_list = [
("libscdlo.a", "scd_component_getFactory"),
("libscfiltlo.a", "scfilt_component_getFactory"),
@@ -138,6 +148,7 @@ writer_constructor_list = [
factory_map = {
'core' : core_factory_list,
+ 'edit' : edit_factory_list,
'calc' : calc_factory_list,
'draw' : draw_factory_list,
'writer' : writer_factory_list,
@@ -145,6 +156,7 @@ factory_map = {
constructor_map = {
'core' : core_constructor_list,
+ 'edit' : edit_constructor_list,
'calc' : calc_constructor_list,
'draw' : draw_constructor_list,
'writer' : writer_constructor_list,