summaryrefslogtreecommitdiff
path: root/chromium/content/common
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2019-12-12 16:50:19 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2021-10-04 10:18:37 +0200
commit14738de583ce4263e1df9253a8b490eafe6b5556 (patch)
tree802c9a4fb35e59dcc585be9c00bfeb6b7511720e /chromium/content/common
parent54d588f43cf3b29cfe33aa0f712ca73977bc42ba (diff)
downloadqtwebengine-chromium-14738de583ce4263e1df9253a8b490eafe6b5556.tar.gz
Fix 32bit sandboxing on Windows
Static linking would lose essential symbols, we need it to be a source_set, but can make the places that uses it static_libraries instead. Change-Id: I77454a217c937117d497330b023da6fa45c95d0f Reviewed-by: Kirill Burtsev <kirill.burtsev@qt.io>
Diffstat (limited to 'chromium/content/common')
-rw-r--r--chromium/content/common/BUILD.gn2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/content/common/BUILD.gn b/chromium/content/common/BUILD.gn
index 0fb9b184f7b..4b4f87c1d8c 100644
--- a/chromium/content/common/BUILD.gn
+++ b/chromium/content/common/BUILD.gn
@@ -34,7 +34,7 @@ buildflag_header("buildflags") {
]
}
-source_set("common") {
+static_library("common") {
# Targets external to content should always link to the public API.
# In addition, targets outside of the content component (shell and tests)
# must not link to this because it will duplicate the code in the component