diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-07-15 09:28:31 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-09 12:03:30 +0200 |
commit | 3d44c6a49b20415616dab7a2de2820da5efab309 (patch) | |
tree | e6bac0922d44f629e2a548887de048abff9f5557 /solenv/bin/native-code.py | |
parent | d2140a6320cd1cf4dea29b174cdb3bcb5261056b (diff) |
ucb/core: create instances with uno constructors
See tdf#74608 for motivation.
Change-Id: Ieabf6d417a482ea7cc17e78a78954687e8894cb1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98801
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'solenv/bin/native-code.py')
-rwxr-xr-x | solenv/bin/native-code.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py index 198768b9c28a..28066c1f42d3 100755 --- a/solenv/bin/native-code.py +++ b/solenv/bin/native-code.py @@ -21,7 +21,6 @@ import xml.etree.ElementTree as ET core_factory_list = [ ("libi18npoollo.a", "i18npool_component_getFactory"), - ("libucb1.a", "ucb_component_getFactory"), ("libvcllo.a", "vcl_component_getFactory"), ("libsvtlo.a", "svt_component_getFactory"), ] @@ -345,6 +344,13 @@ core_constructor_list = [ "stardiv_Toolkit_VCLXPointer_get_implementation", "stardiv_Toolkit_VCLXPopupMenu_get_implementation", "stardiv_Toolkit_VCLXToolkit_get_implementation", +# ucb/source/core/ucb1.component + "ucb_UcbCommandEnvironment_get_implementation", + "ucb_UcbContentProviderProxyFactory_get_implementation", + "ucb_UcbPropertiesManager_get_implementation", + "ucb_UcbStore_get_implementation", + "ucb_UniversalContentBroker_get_implementation", + "ucb_OFileAccess_get_implementation", # ucb/source/ucp/file/ucpfile1.component "ucb_file_FileProvider_get_implementation", # ucb/source/ucp/expand/ucpexpand1.component |