diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2020-09-22 13:23:00 +0200 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2020-09-22 22:36:44 +0200 |
commit | 9613165239ade3f0b4d3d06e238430aabc9fcff3 (patch) | |
tree | 2f1616e177c61fbefef37bee09df0cdf443d1873 /postprocess | |
parent | 7db048f62929a9d267b63db3a6ea2b58b47ec757 (diff) |
WIN move dtrans code into vcl/win/dtrans
There is nothing abstract about either the clipboard or data
transfer code in that directory and it's just used on Windows.
All other backends implement this code in VCL, so this moves
almost all code, except for the common MimeContentTypeFactory,
into the vcl Windows backend / vclplug_win.
This also drops four DLLs: sysdtrans, dnd, dtrans and ftransl.
Change-Id: I7018f50768bf221447b40487cc1f8a8586da33c4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103209
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'postprocess')
-rw-r--r-- | postprocess/Rdb_services.mk | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/postprocess/Rdb_services.mk b/postprocess/Rdb_services.mk index 7cda2c71e986..5781081d96de 100644 --- a/postprocess/Rdb_services.mk +++ b/postprocess/Rdb_services.mk @@ -61,7 +61,10 @@ $(eval $(call gb_Rdb_add_components,services,\ $(if $(DISABLE_GUI),vcl/vcl.headless) \ $(if $(filter iOS,$(OS)),vcl/vcl.ios) \ $(if $(filter MACOSX,$(OS)),vcl/vcl.macosx) \ - $(if $(filter WNT,$(OS)),vcl/vcl.windows) \ + $(if $(filter WNT,$(OS)),\ + vcl/vcl.windows \ + vcl/vclplug_win \ + ) \ )) ifeq ($(gb_Side),host) @@ -158,10 +161,6 @@ $(eval $(call gb_Rdb_add_components,services,\ ) \ $(if $(filter WNT,$(OS)), \ avmedia/source/win/avmediawin \ - dtrans/source/generic/dtrans \ - dtrans/util/dnd \ - dtrans/util/ftransl \ - dtrans/util/sysdtrans \ fpicker/source/win32/fps \ shell/source/backends/wininetbe/wininetbe1 \ shell/source/win32/simplemail/smplmail \ |