diff options
author | Jan Holesovsky <kendy@collabora.com> | 2015-02-13 11:37:48 +0100 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2015-02-13 11:54:41 +0100 |
commit | e24ca726875a4533352d3bf06bae3d9c07e79a8d (patch) | |
tree | ba4b952ccd9b1a7c3ead02d71344e63a11ae24a9 /solenv | |
parent | 21796a5fb92fd9773017b782a654a8b5a190cc66 (diff) |
native-code.py: Don't add the entire libchartcorelo.a.
Instead, just add the constructors of the needed services. Tested with
various-charts.ods from tdf#89364.
Change-Id: I98df03bfc19aeacaa92e4693e7934c8503f183e1
Diffstat (limited to 'solenv')
-rwxr-xr-x | solenv/bin/native-code.py | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py index 62a668e54112..653a524e3022 100755 --- a/solenv/bin/native-code.py +++ b/solenv/bin/native-code.py @@ -24,7 +24,6 @@ core_factory_list = [ ("libembobj.a", "embobj_component_getFactory"), ("libreflectionlo.a", "reflection_component_getFactory"), ("libstocserviceslo.a", "stocservices_component_getFactory"), - ("libchartcorelo.a", "chartcore_component_getFactory"), ("libcomphelper.a", "comphelp_component_getFactory"), ("libconfigmgrlo.a", "configmgr_component_getFactory"), ("libdrawinglayerlo.a", "drawinglayer_component_getFactory"), @@ -62,6 +61,27 @@ core_factory_list = [ ] core_constructor_list = [ +# chart2/source/chartcore.component + "com_sun_star_comp_chart_AreaChartType_get_implementation", + "com_sun_star_comp_chart_BarChartType_get_implementation", + "com_sun_star_comp_chart_BubbleChartType_get_implementation", + "com_sun_star_comp_chart_CandleStickChartType_get_implementation", + "com_sun_star_comp_chart_ChartTypeManager_get_implementation", + "com_sun_star_comp_chart_ColumnChartType_get_implementation", + "com_sun_star_comp_chart_DataSeries_get_implementation", + "com_sun_star_comp_chart_FilledNetChartType_get_implementation", + "com_sun_star_comp_chart_GL3DBarChartType_get_implementation", + "com_sun_star_comp_chart_FormattedString_get_implementation", + "com_sun_star_comp_chart_LineChartType_get_implementation", + "com_sun_star_comp_chart_NetChartType_get_implementation", + "com_sun_star_comp_chart_PieChartType_get_implementation", + "com_sun_star_comp_chart_ScatterChartType_get_implementation", + "com_sun_star_comp_chart2_Axis_get_implementation", + "com_sun_star_comp_chart2_ChartModel_get_implementation", + "com_sun_star_comp_chart2_Diagram_get_implementation", + "com_sun_star_comp_chart2_LabeledDataSequence_get_implementation", + "com_sun_star_comp_chart2_Legend_get_implementation", + "com_sun_star_comp_chart2_XMLFilter_get_implementation", # chart2/source/controller/chartcontroller.component "com_sun_star_comp_chart2_ChartDocumentWrapper_get_implementation", # framework/util/fwk.component |