Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(579)

Unified Diff: third_party/WebKit/Source/core/svg/BUILD.gn

Issue 2502303002: Set split_count=5 on Windows official builds for third_party/WebKit/Source/core/svg/svg.lib (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/svg/BUILD.gn
diff --git a/third_party/WebKit/Source/core/svg/BUILD.gn b/third_party/WebKit/Source/core/svg/BUILD.gn
index c5d40c685cfe187b23504513731ebcd9a308ee01..e8a03ae28125991212d42bb08bfaf51924beaee4 100644
--- a/third_party/WebKit/Source/core/svg/BUILD.gn
+++ b/third_party/WebKit/Source/core/svg/BUILD.gn
@@ -5,6 +5,14 @@
import("//third_party/WebKit/Source/core/core.gni")
blink_core_sources("svg") {
+ # Split into multiple static libraries on Windows official builds, where we
+ # run into a 2GB max size limit.
+ if (is_win && is_official_build) {
+ split_count = 5
+ } else {
+ split_count = 1
+ }
+
sources = [
"ColorDistance.cpp",
"ColorDistance.h",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698