diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2013-12-18 17:54:33 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2013-12-19 09:41:45 +0100 |
commit | ad4e451070bc3aa2d1c6c4c582d66d5cb34bec59 (patch) | |
tree | cce468cf96114fa4fa066d65dba68fa412b8b235 /include | |
parent | ae3a0c8da50b36db395984637f5ad74d3b4887bc (diff) |
Deduplicate a lot of common components.
Change-Id: Ic3eb95119eed7a691c9cd0c677f28c87395b9415
Diffstat (limited to 'include')
-rw-r--r-- | include/osl/detail/component-mapping.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/osl/detail/component-mapping.h b/include/osl/detail/component-mapping.h index df00726a4e52..a22b86db8c00 100644 --- a/include/osl/detail/component-mapping.h +++ b/include/osl/detail/component-mapping.h @@ -44,25 +44,43 @@ const lib_to_constructor_mapping *lo_get_constructor_map(void); #endif #define NON_APP_SPECIFIC_FACTORY_MAP \ + { "libembobj.a", embobj_component_getFactory }, \ + { "libemboleobj.a", emboleobj_component_getFactory }, \ { "libintrospectionlo.a", introspection_component_getFactory }, \ { "libreflectionlo.a", reflection_component_getFactory }, \ { "libstocserviceslo.a", stocservices_component_getFactory }, \ { "libcomphelper.a", comphelp_component_getFactory }, \ { "libconfigmgrlo.a", configmgr_component_getFactory }, \ { "libdeployment.a", deployment_component_getFactory }, \ + { "libevtattlo.a", evtatt_component_getFactory }, \ { "libfilterconfiglo.a", filterconfig1_component_getFactory }, \ + { "libfsstoragelo.a", fsstorage_component_getFactory }, \ { "libfwklo.a", fwk_component_getFactory }, \ + { "libfwllo.a", fwl_component_getFactory }, \ + { "libhyphenlo.a", hyphen_component_getFactory }, \ { "libi18npoollo.a", i18npool_component_getFactory }, \ + { "liblnglo.a", lng_component_getFactory }, \ + { "liblnthlo.a", lnth_component_getFactory }, \ { "liblocalebe1lo.a", localebe1_component_getFactory }, \ + { "libooxlo.a", oox_component_getFactory }, \ { "libpackage2.a", package2_component_getFactory }, \ { "libsfxlo.a", sfx_component_getFactory }, \ + { "libsotlo.a", sot_component_getFactory }, \ + { "libspelllo.a", spell_component_getFactory }, \ { "libsvllo.a", svl_component_getFactory }, \ + { "libsvtlo.a", svt_component_getFactory }, \ + { "libsvxlo.a", svx_component_getFactory }, \ { "libtklo.a", tk_component_getFactory }, \ { "libucb1.a", ucb_component_getFactory }, \ { "libucpexpand1lo.a", ucpexpand1_component_getFactory }, \ { "libucpfile1.a", ucpfile_component_getFactory }, \ + { "libunordflo.a", unordf_component_getFactory }, \ + { "libunoxmllo.a", unoxml_component_getFactory }, \ { "libutllo.a", utl_component_getFactory }, \ { "libvcllo.a", vcl_component_getFactory }, \ + { "libxmlsecurity.a", xmlsecurity_component_getFactory }, \ + { "libxolo.a", xo_component_getFactory }, \ + { "libxoflo.a", xof_component_getFactory }, \ { "libxstor.a", xstor_component_getFactory }, \ #define NON_APP_SPECIFIC_CONSTRUCTOR_MAP \ |