summaryrefslogtreecommitdiff
path: root/chromium/content/common
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-03-05 16:32:43 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2021-07-05 15:40:22 +0000
commit06419c71a63b909a19cd2c80e6469b6384462ce9 (patch)
tree8fe5bd2641ce70bc2a3a20e43054800c5f0aea3b /chromium/content/common
parent3f22d92dba9366bfe0e07e84d9ffcf2738225bef (diff)
downloadqtwebengine-chromium-06419c71a63b909a19cd2c80e6469b6384462ce9.tar.gz
Fixes for jumbo build
Fixes necessary to make jumbo build work Change-Id: I1551ddeaa15fdc4e9db72e86ea49191193cb4964 Reviewed-by: Michal Klocek <michal.klocek@qt.io> Reviewed-by: Peter Varga <pvarga@inf.u-szeged.hu>
Diffstat (limited to 'chromium/content/common')
-rw-r--r--chromium/content/common/BUILD.gn8
1 files changed, 7 insertions, 1 deletions
diff --git a/chromium/content/common/BUILD.gn b/chromium/content/common/BUILD.gn
index 4b0b31477c4..d6681d45685 100644
--- a/chromium/content/common/BUILD.gn
+++ b/chromium/content/common/BUILD.gn
@@ -4,6 +4,7 @@
import("//build/buildflag_header.gni")
import("//build/config/features.gni")
+import("//build/config/jumbo.gni")
import("//build/config/ui.gni")
import("//content/public/common/zygote/features.gni")
import("//ipc/features.gni")
@@ -35,7 +36,7 @@ buildflag_header("buildflags") {
]
}
-static_library("common") {
+jumbo_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
@@ -153,6 +154,11 @@ static_library("common") {
"web_package/signed_exchange_utils.cc",
"web_package/signed_exchange_utils.h",
]
+ jumbo_excluded_sources = [
+ "common_param_traits.cc",
+ "content_message_generator.cc",
+ "content_param_traits.cc",
+ ]
configs += [
"//content:content_implementation",