office-gobmx/configmgr/Library_configmgr.mk
Stephan Bergmann 7f04bb393f Clean up color scheme migration
...avoiding to have code in configmgr that knows about the details of the data
stored in the configuration.  (See the comments starting at
<https://gerrit.libreoffice.org/c/core/+/139690/9#message-44703a2529c07bf1b0202ed3a232aa661784b159>
"Migrating product name related color schemes between different versions" for
details.)

This reverts the dubious changes of 583ea856f2
"Migrating product name related color schemes between different versions" in
configmgr and offapi.  (Also, this moves the computation of sMigratedProductName
in MigrationImpl::copyConfig, desktop/source/migration/migration.cxx, to a saner
location than in the middle of the "check if the shared
registrymodifications.xcu file exists" block where that
583ea856f2 had placed it.)

Change-Id: I7ab3d57db19065c7c818e697300a2abd9e7f72bc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139963
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2022-09-15 14:27:31 +02:00

67 lines
2 KiB
Makefile

#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
$(eval $(call gb_Library_Library,configmgr))
$(eval $(call gb_Library_set_precompiled_header,configmgr,configmgr/inc/pch/precompiled_configmgr))
$(eval $(call gb_Library_add_exception_objects,configmgr, \
configmgr/source/access \
configmgr/source/broadcaster \
configmgr/source/childaccess \
configmgr/source/components \
configmgr/source/configurationprovider \
configmgr/source/configurationregistry \
configmgr/source/data \
configmgr/source/defaultprovider \
configmgr/source/groupnode \
configmgr/source/localizedpropertynode \
configmgr/source/localizedvaluenode \
configmgr/source/lock \
configmgr/source/modifications \
configmgr/source/node \
configmgr/source/nodemap \
configmgr/source/parsemanager \
configmgr/source/partial \
configmgr/source/propertynode \
configmgr/source/readonlyaccess \
configmgr/source/readwriteaccess \
configmgr/source/rootaccess \
configmgr/source/rootnode \
configmgr/source/setnode \
configmgr/source/type \
configmgr/source/update \
configmgr/source/valueparser \
configmgr/source/writemodfile \
configmgr/source/xcdparser \
configmgr/source/xcsparser \
configmgr/source/xcuparser \
configmgr/source/xmldata \
$(if $(ENABLE_DCONF),configmgr/source/dconf) \
$(if $(filter $(OS),WNT),configmgr/source/winreg) \
))
$(eval $(call gb_Library_use_externals,configmgr, \
boost_headers \
dconf \
))
$(eval $(call gb_Library_use_sdk_api,configmgr))
$(eval $(call gb_Library_use_libraries,configmgr, \
comphelper \
cppu \
cppuhelper \
sal \
salhelper \
tl \
xmlreader \
i18nlangtag \
))
$(eval $(call gb_Library_set_componentfile,configmgr,configmgr/source/configmgr,services))