summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2021-12-09 10:15:05 +0100
committerStephan Bergmann <sbergman@redhat.com>2021-12-10 08:14:24 +0100
commitdb3a61cd958f4a70417929cf8e1fa9bfd0bfe5a3 (patch)
tree20c4ceba87df6b65e218a670ae22e35d7a1da30f /shell
parent5b0707f66e2c49a11f3a23e3ec9940b26d881165 (diff)
Generally determine Rdb content from gb_*_set_componentfile calls
...instead of by listing the content somewhat redundantly in the Rdb_*.mk files, to avoid duplication of logic for components that are only built conditionally (and thus should only be included conditionally in the corresponding Rdb). To achieve that, add an "rdb" parameter to gb_ComponentTarget_ComponentTarget (and to the gb_*_set_componentfile macros that internally call gb_ComponentTarget_ComponentTarget), which is used to make the appropriate gb_Rdb_add_component call internally from within gb_ComponentTarget_ComponentTarget. (As a special case, gb_CppunitTest_set_componentfile shall not call gb_Rdb_add_component, as that has already been done by the corresponding gb_Library_set_componentfile call, so allow the gb_ComponentTarget_ComponentTarget "rdb" parameter to be empty to support that special case.) Most Rdb_*.mk files are thus mostly empty now. One exception is i18npool/Rdb_saxparser.mk, which duplicates some of the Rdb_services content as needed during the build in CustomTarget_i18npool/localedata. 1c9a40299d328c78c035ca63ccdf22c5c669a03b "gbuild: create services.rdb from built components" had already tried to do something similar (in addition to other things) under a new --enable-services-rdb-from-build option. However, that approach had four drawbacks that this approach here addresses (and which thus partly reverts 1c9a40299d328c78c035ca63ccdf22c5c669a03b): 1 Rdb_services shall not contain the component files of all libraries that are built. While that commit filtered out the component files that go into Rdb_ure/services (ure/Rdb_ure.mk), it failed to filter out the component files that go into others like Rdb_postgresql-sdbc (connectivity/Rdb_postgresql-sdbc.mk). 2 The code added by that commit to Makefile.gbuild codified the knowledge that there is an Rdb_services, which is brittle. 3 The code added by that commit to solenv/gbuild/Rdb.mk codified the knowledge (for gb_Rdb__URECOMPONENTS) that there is an Rdb_ure/services, which is brittle. 4 Introducing an --enable-services-rdb-from-build option needlessly provided two different ways how the content of Rdb_services is assembled. The changes done here would leave --enable-services-rdb-from-build as a misnomer, as it no longer controls how Rdb_services is assembled. I thus renamed it to --enable-customtarget-components, as that is apparently what it still does now. Change-Id: Ia5e8df4b640146c77421fcec6daa11a9cd260265 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126577 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'shell')
-rw-r--r--shell/Library_cmdmail.mk2
-rw-r--r--shell/Library_desktopbe.mk2
-rw-r--r--shell/Library_kf5be.mk2
-rw-r--r--shell/Library_localebe.mk2
-rw-r--r--shell/Library_losessioninstall.mk2
-rw-r--r--shell/Library_macbe.mk2
-rw-r--r--shell/Library_smplmail.mk2
-rw-r--r--shell/Library_syssh.mk4
-rw-r--r--shell/Library_wininetbe.mk2
9 files changed, 10 insertions, 10 deletions
diff --git a/shell/Library_cmdmail.mk b/shell/Library_cmdmail.mk
index e3af3fb51a67..6e0683738453 100644
--- a/shell/Library_cmdmail.mk
+++ b/shell/Library_cmdmail.mk
@@ -18,7 +18,7 @@ $(eval $(call gb_Library_use_libraries,cmdmail,\
tl \
))
-$(eval $(call gb_Library_set_componentfile,cmdmail,shell/source/cmdmail/cmdmail))
+$(eval $(call gb_Library_set_componentfile,cmdmail,shell/source/cmdmail/cmdmail,services))
$(eval $(call gb_Library_add_exception_objects,cmdmail,\
shell/source/cmdmail/cmdmailmsg \
diff --git a/shell/Library_desktopbe.mk b/shell/Library_desktopbe.mk
index e70f7c95c03e..c494b5e1cdb3 100644
--- a/shell/Library_desktopbe.mk
+++ b/shell/Library_desktopbe.mk
@@ -21,7 +21,7 @@ $(eval $(call gb_Library_use_libraries,desktopbe1,\
vcl \
))
-$(eval $(call gb_Library_set_componentfile,desktopbe1,shell/source/backends/desktopbe/desktopbe1))
+$(eval $(call gb_Library_set_componentfile,desktopbe1,shell/source/backends/desktopbe/desktopbe1,services))
$(eval $(call gb_Library_add_exception_objects,desktopbe1,\
shell/source/backends/desktopbe/desktopbackend \
diff --git a/shell/Library_kf5be.mk b/shell/Library_kf5be.mk
index 628145176e0f..61262c567516 100644
--- a/shell/Library_kf5be.mk
+++ b/shell/Library_kf5be.mk
@@ -22,7 +22,7 @@ $(eval $(call gb_Library_use_libraries,kf5be1,\
sal \
))
-$(eval $(call gb_Library_set_componentfile,kf5be1,shell/source/backends/kf5be/kf5be1))
+$(eval $(call gb_Library_set_componentfile,kf5be1,shell/source/backends/kf5be/kf5be1,services))
$(eval $(call gb_Library_add_exception_objects,kf5be1,\
shell/source/backends/kf5be/kf5access \
diff --git a/shell/Library_localebe.mk b/shell/Library_localebe.mk
index dd598dacdbe9..b185655ce6fc 100644
--- a/shell/Library_localebe.mk
+++ b/shell/Library_localebe.mk
@@ -25,7 +25,7 @@ $(eval $(call gb_Library_use_libraries,localebe1,\
i18nlangtag \
))
-$(eval $(call gb_Library_set_componentfile,localebe1,shell/source/backends/localebe/localebe1))
+$(eval $(call gb_Library_set_componentfile,localebe1,shell/source/backends/localebe/localebe1,services))
$(eval $(call gb_Library_add_exception_objects,localebe1,\
shell/source/backends/localebe/localebackend \
diff --git a/shell/Library_losessioninstall.mk b/shell/Library_losessioninstall.mk
index c83b8fa9c358..1c95a2dd7cd8 100644
--- a/shell/Library_losessioninstall.mk
+++ b/shell/Library_losessioninstall.mk
@@ -9,7 +9,7 @@
$(eval $(call gb_Library_Library,losessioninstall))
-$(eval $(call gb_Library_set_componentfile,losessioninstall,shell/source/sessioninstall/losessioninstall))
+$(eval $(call gb_Library_set_componentfile,losessioninstall,shell/source/sessioninstall/losessioninstall,services))
$(eval $(call gb_Library_use_api,losessioninstall,\
offapi \
diff --git a/shell/Library_macbe.mk b/shell/Library_macbe.mk
index e8dbdb4fe090..091b6d43a15a 100644
--- a/shell/Library_macbe.mk
+++ b/shell/Library_macbe.mk
@@ -24,7 +24,7 @@ $(eval $(call gb_Library_use_libraries,macbe1,\
sal \
))
-$(eval $(call gb_Library_set_componentfile,macbe1,shell/source/backends/macbe/macbe1))
+$(eval $(call gb_Library_set_componentfile,macbe1,shell/source/backends/macbe/macbe1,services))
$(eval $(call gb_Library_add_objcxxobjects,macbe1,\
shell/source/backends/macbe/macbackend \
diff --git a/shell/Library_smplmail.mk b/shell/Library_smplmail.mk
index fa96b41d35f3..9a72551b9ace 100644
--- a/shell/Library_smplmail.mk
+++ b/shell/Library_smplmail.mk
@@ -24,7 +24,7 @@ $(eval $(call gb_Library_use_libraries,smplmail,\
utl \
))
-$(eval $(call gb_Library_set_componentfile,smplmail,shell/source/win32/simplemail/smplmail))
+$(eval $(call gb_Library_set_componentfile,smplmail,shell/source/win32/simplemail/smplmail,services))
$(eval $(call gb_Library_add_exception_objects,smplmail,\
shell/source/win32/simplemail/smplmailclient \
diff --git a/shell/Library_syssh.mk b/shell/Library_syssh.mk
index 43d52ea2ee0c..e83a85262dcf 100644
--- a/shell/Library_syssh.mk
+++ b/shell/Library_syssh.mk
@@ -25,7 +25,7 @@ $(eval $(call gb_Library_use_system_win32_libs,syssh,\
shell32 \
))
-$(eval $(call gb_Library_set_componentfile,syssh,shell/source/win32/syssh))
+$(eval $(call gb_Library_set_componentfile,syssh,shell/source/win32/syssh,services))
$(eval $(call gb_Library_add_exception_objects,syssh,\
shell/source/win32/SysShExec \
@@ -37,7 +37,7 @@ $(eval $(call gb_Library_use_static_libraries,syssh,\
shell_xmlparser \
))
-$(eval $(call gb_Library_set_componentfile,syssh,shell/source/unix/exec/syssh))
+$(eval $(call gb_Library_set_componentfile,syssh,shell/source/unix/exec/syssh,services))
$(eval $(call gb_Library_add_exception_objects,syssh,\
shell/source/unix/exec/shellexec \
diff --git a/shell/Library_wininetbe.mk b/shell/Library_wininetbe.mk
index c5dd87df7d4c..c2029baee025 100644
--- a/shell/Library_wininetbe.mk
+++ b/shell/Library_wininetbe.mk
@@ -17,7 +17,7 @@ $(eval $(call gb_Library_use_libraries,wininetbe1,\
sal \
))
-$(eval $(call gb_Library_set_componentfile,wininetbe1,shell/source/backends/wininetbe/wininetbe1))
+$(eval $(call gb_Library_set_componentfile,wininetbe1,shell/source/backends/wininetbe/wininetbe1,services))
$(eval $(call gb_Library_add_exception_objects,wininetbe1,\
shell/source/backends/wininetbe/wininetbackend \