Kaydet (Commit) 18ea4fea authored tarafından Matúš Kukan's avatar Matúš Kukan

Add components needed for editing a document in android/desktop app.

As new 'edit' group because they are not needed in view-only
TiledLibreOffice_app. Although, probably there are more components
in 'core' which should be in 'edit' too, who knows, sigh.

Change-Id: I1efebc9884662a5d25744a3414717aa410350ef4
üst b0ac763d
......@@ -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
......
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment