summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@collabora.com>2013-12-19 12:16:09 +0100
committerMatúš Kukan <matus.kukan@collabora.com>2013-12-19 15:34:33 +0100
commit645dac2f9434d70d4aa393bac899b9984f533b20 (patch)
treefeace7701a033314ca91745736bef20eeec7edb4 /android
parent6275751f63e44071de1d7486300be16deec13e3a (diff)
Deduplicate more components.
No one says this is the only good classification. Quite possibly it's not even a good one, but at least something. Change-Id: I81178314222f9f63708a83b262ff8ef73a1d9467
Diffstat (limited to 'android')
-rw-r--r--android/experimental/DocumentLoader/native-code.cxx23
-rw-r--r--android/experimental/LibreOffice4Android/native-code.cxx31
-rw-r--r--android/experimental/desktop/native-code.cxx28
3 files changed, 13 insertions, 69 deletions
diff --git a/android/experimental/DocumentLoader/native-code.cxx b/android/experimental/DocumentLoader/native-code.cxx
index 8c8a9bd26640..7cba3773f5e8 100644
--- a/android/experimental/DocumentLoader/native-code.cxx
+++ b/android/experimental/DocumentLoader/native-code.cxx
@@ -15,29 +15,14 @@ const lib_to_factory_mapping *
lo_get_factory_map(void)
{
static lib_to_factory_mapping map[] = {
- LO_CORE_FACTORY_MAP
+ LO_EXTENDED_CORE_FACTORY_MAP
+ LO_BASE_CORE_FACTORY_MAP
LO_CALC_CORE_FACTORY_MAP
+ LO_DRAW_CORE_FACTORY_MAP
+ LO_MATH_FACTORY_MAP
LO_WRITER_FACTORY_MAP
- { "libanimcorelo.a", animcore_component_getFactory },
- { "libavmedialo.a", avmedia_component_getFactory },
- { "libdbalo.a", dba_component_getFactory },
- { "libdbaxmllo.a", dbaxml_component_getFactory },
- { "libfrmlo.a", frm_component_getFactory },
- { "libfwklo.a", fwk_component_getFactory },
- { "libfwmlo.a", fwm_component_getFactory },
- { "libhwplo.a", hwp_component_getFactory },
{ "libprotocolhandlerlo.a", protocolhandler_component_getFactory },
{ "libsblo.a", sb_component_getFactory },
- { "libsddlo.a", sdd_component_getFactory },
- { "libsdlo.a", sd_component_getFactory },
- { "libsmdlo.a", smd_component_getFactory },
- { "libsmlo.a", sm_component_getFactory },
- { "libsvgfilterlo.a", svgfilter_component_getFactory },
- { "libt602filterlo.a", t602filter_component_getFactory },
- { "libtextfdlo.a", textfd_component_getFactory },
- { "libwpftdrawlo.a", wpftdraw_component_getFactory },
- { "libwpftwriterlo.a", wpftwriter_component_getFactory },
- { "libxmlfdlo.a", xmlfd_component_getFactory },
{ NULL, NULL }
};
diff --git a/android/experimental/LibreOffice4Android/native-code.cxx b/android/experimental/LibreOffice4Android/native-code.cxx
index 7f36ce776cc3..44cb862da480 100644
--- a/android/experimental/LibreOffice4Android/native-code.cxx
+++ b/android/experimental/LibreOffice4Android/native-code.cxx
@@ -15,41 +15,20 @@ const lib_to_factory_mapping *
lo_get_factory_map(void)
{
static lib_to_factory_mapping map[] = {
- LO_CORE_FACTORY_MAP
+ LO_EXTENDED_CORE_FACTORY_MAP
+ LO_BASE_CORE_FACTORY_MAP
LO_CALC_CORE_FACTORY_MAP
+ LO_DRAW_CORE_FACTORY_MAP
+ LO_MATH_FACTORY_MAP
LO_WRITER_FACTORY_MAP
- { "libanimcorelo.a", animcore_component_getFactory },
- { "libavmedialo.a", avmedia_component_getFactory },
- { "libbasprov.uno.a", basprov_component_getFactory },
- { "libchartcorelo.a", chartcore_component_getFactory },
- { "libdlgprov.uno.a", dlgprov_component_getFactory },
- { "libdbalo.a", dba_component_getFactory },
- { "libdbaxmllo.a", dbaxml_component_getFactory },
- { "libfilterconfiglo.a", filterconfig1_component_getFactory },
- { "libfrmlo.a", frm_component_getFactory },
- { "libfwklo.a", fwk_component_getFactory },
- { "libfwmlo.a", fwm_component_getFactory },
- { "libhwplo.a", hwp_component_getFactory },
+ { "libdlgprovlo.a", dlgprov_component_getFactory },
{ "libprotocolhandlerlo.a", protocolhandler_component_getFactory },
{ "libscriptframe.a", scriptframe_component_getFactory },
{ "libsblo.a", sb_component_getFactory },
- { "libsddlo.a", sdd_component_getFactory },
- { "libsdlo.a", sd_component_getFactory },
- { "libsmdlo.a", smd_component_getFactory },
- { "libsmlo.a", sm_component_getFactory },
{ "libscriptframe.a", scriptframe_component_getFactory },
{ "libstringresource.uno.a", stringresource_component_getFactory },
- { "libsvgfilterlo.a", svgfilter_component_getFactory },
- { "libsvxcorelo.a", svxcore_component_getFactory },
- { "libt602filterlo.a", t602filter_component_getFactory },
- { "libtextfdlo.a", textfd_component_getFactory },
- { "libtklo.a", tk_component_getFactory },
- { "libucppkg1.a", ucppkg1_component_getFactory },
{ "libvbaswobj.uno.a", vbaswobj_component_getFactory },
{ "libvbaevents.uno.a", vbaevents_component_getFactory },
- { "libwpftdrawlo.a", wpftdraw_component_getFactory },
- { "libwpftwriterlo.a", wpftwriter_component_getFactory },
- { "libxmlfdlo.a", xmlfd_component_getFactory },
{ NULL, NULL }
};
diff --git a/android/experimental/desktop/native-code.cxx b/android/experimental/desktop/native-code.cxx
index 695fec4b7e1b..6b8deab7d4c6 100644
--- a/android/experimental/desktop/native-code.cxx
+++ b/android/experimental/desktop/native-code.cxx
@@ -15,44 +15,24 @@ const lib_to_factory_mapping *
lo_get_factory_map(void)
{
static lib_to_factory_mapping map[] = {
- LO_CORE_FACTORY_MAP
+ LO_EXTENDED_CORE_FACTORY_MAP
+ LO_BASE_CORE_FACTORY_MAP
LO_CALC_CORE_FACTORY_MAP
+ LO_DRAW_CORE_FACTORY_MAP
+ LO_MATH_FACTORY_MAP
LO_WRITER_FACTORY_MAP
- { "libanimcorelo.a", animcore_component_getFactory },
- { "libavmedialo.a", avmedia_component_getFactory },
{ "libbasprovlo.a", basprov_component_getFactory },
- { "libchartcorelo.a", chartcore_component_getFactory },
{ "libdlgprovlo.a", dlgprov_component_getFactory },
- { "libdbalo.a", dba_component_getFactory },
- { "libdbaxmllo.a", dbaxml_component_getFactory },
{ "libcuilo.a", cui_component_getFactory },
- { "libfilterconfiglo.a", filterconfig1_component_getFactory },
- { "libfrmlo.a", frm_component_getFactory },
- { "libfwklo.a", fwk_component_getFactory },
- { "libfwmlo.a", fwm_component_getFactory },
- { "libhwplo.a", hwp_component_getFactory },
{ "libprotocolhandlerlo.a", protocolhandler_component_getFactory },
{ "libscriptframe.a", scriptframe_component_getFactory },
{ "libsblo.a", sb_component_getFactory },
- { "libsddlo.a", sdd_component_getFactory },
- { "libsdlo.a", sd_component_getFactory },
- { "libsmdlo.a", smd_component_getFactory },
- { "libsmlo.a", sm_component_getFactory },
{ "libspllo.a", spl_component_getFactory },
{ "libscriptframe.a", scriptframe_component_getFactory },
{ "libstringresourcelo.a", stringresource_component_getFactory },
- { "libsvgfilterlo.a", svgfilter_component_getFactory },
- { "libsvxcorelo.a", svxcore_component_getFactory },
- { "libt602filterlo.a", t602filter_component_getFactory },
- { "libtextfdlo.a", textfd_component_getFactory },
- { "libtklo.a", tk_component_getFactory },
- { "libucppkg1.a", ucppkg1_component_getFactory },
{ "libuuilo.a", uui_component_getFactory },
{ "libvbaswobjlo.a", vbaswobj_component_getFactory },
{ "libvbaeventslo.a", vbaevents_component_getFactory },
- { "libwpftdrawlo.a", wpftdraw_component_getFactory },
- { "libwpftwriterlo.a", wpftwriter_component_getFactory },
- { "libxmlfdlo.a", xmlfd_component_getFactory },
{ NULL, NULL }
};