summaryrefslogtreecommitdiff
path: root/chromium/components/policy
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-12-09 10:12:38 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2021-10-04 10:21:06 +0200
commit812e2db7c43a5773d8cd1a0e20bbfa1576413fc1 (patch)
treed1535467af462923f61420bb1fa4f5722a494c4b /chromium/components/policy
parentef7f6c6ae7463d0e14bf15c57fb0ed5c2626c7c1 (diff)
downloadqtwebengine-chromium-812e2db7c43a5773d8cd1a0e20bbfa1576413fc1.tar.gz
Reinstate jumbo-builds
Reverts four patches disabling and removing jumbo builds. It makes too big of a difference for us to drop. Change-Id: Ib7dd65996f9e985480f49fab2d1781a5d08bf6fd Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'chromium/components/policy')
-rw-r--r--chromium/components/policy/content/BUILD.gn5
-rw-r--r--chromium/components/policy/core/browser/BUILD.gn5
-rw-r--r--chromium/components/policy/core/common/BUILD.gn5
3 files changed, 9 insertions, 6 deletions
diff --git a/chromium/components/policy/content/BUILD.gn b/chromium/components/policy/content/BUILD.gn
index 2709062c39b..4be7dc11ba0 100644
--- a/chromium/components/policy/content/BUILD.gn
+++ b/chromium/components/policy/content/BUILD.gn
@@ -3,10 +3,11 @@
# found in the LICENSE file.
import("//build/config/features.gni")
+import("//build/config/jumbo.gni")
assert(!is_ios, "Policy Throttle should not be referenced on iOS")
-source_set("safe_sites_navigation_throttle") {
+jumbo_source_set("safe_sites_navigation_throttle") {
sources = [
"safe_search_service.cc",
"safe_search_service.h",
@@ -25,7 +26,7 @@ source_set("safe_sites_navigation_throttle") {
]
}
-source_set("content") {
+jumbo_source_set("content") {
sources = [
"policy_blocklist_navigation_throttle.cc",
"policy_blocklist_navigation_throttle.h",
diff --git a/chromium/components/policy/core/browser/BUILD.gn b/chromium/components/policy/core/browser/BUILD.gn
index 0e8afdd3711..84dee424263 100644
--- a/chromium/components/policy/core/browser/BUILD.gn
+++ b/chromium/components/policy/core/browser/BUILD.gn
@@ -3,6 +3,7 @@
# found in the LICENSE file.
import("//build/config/features.gni")
+import("//build/config/jumbo.gni")
group("browser") {
if (is_component_build) {
@@ -12,7 +13,7 @@ group("browser") {
}
}
-source_set("internal") {
+jumbo_source_set("internal") {
visibility = [ "//components/policy/*" ]
sources = [
"browser_policy_connector.cc",
@@ -87,7 +88,7 @@ source_set("internal") {
]
}
-static_library("test_support") {
+jumbo_static_library("test_support") {
testonly = true
sources = [
"configuration_policy_pref_store_test.cc",
diff --git a/chromium/components/policy/core/common/BUILD.gn b/chromium/components/policy/core/common/BUILD.gn
index 10290f8679e..e80b996374f 100644
--- a/chromium/components/policy/core/common/BUILD.gn
+++ b/chromium/components/policy/core/common/BUILD.gn
@@ -4,6 +4,7 @@
import("//build/config/chromeos/ui_mode.gni")
import("//build/config/features.gni")
+import("//build/config/jumbo.gni")
import("//testing/libfuzzer/fuzzer_test.gni")
group("common") {
@@ -14,7 +15,7 @@ group("common") {
}
}
-source_set("internal") {
+jumbo_source_set("internal") {
visibility = [ "//components/policy/*" ]
configs += [ "//components/policy:component_implementation" ]
@@ -317,7 +318,7 @@ source_set("internal") {
}
}
-static_library("test_support") {
+jumbo_static_library("test_support") {
testonly = true
sources = [
"cloud/mock_cloud_external_data_manager.cc",