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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//third_party/WebKit/Source/core/core.gni") 5 import("//third_party/WebKit/Source/core/core.gni")
6 6
7 blink_core_sources("svg") { 7 blink_core_sources("svg") {
8 # Split into multiple static libraries on Windows official builds, where we
9 # run into a 2GB max size limit.
10 if (is_win && is_official_build) {
11 split_count = 5
12 } else {
13 split_count = 1
14 }
15
8 sources = [ 16 sources = [
9 "ColorDistance.cpp", 17 "ColorDistance.cpp",
10 "ColorDistance.h", 18 "ColorDistance.h",
11 "GradientAttributes.h", 19 "GradientAttributes.h",
12 "LinearGradientAttributes.h", 20 "LinearGradientAttributes.h",
13 "PatternAttributes.h", 21 "PatternAttributes.h",
14 "RadialGradientAttributes.h", 22 "RadialGradientAttributes.h",
15 "SVGAElement.cpp", 23 "SVGAElement.cpp",
16 "SVGAElement.h", 24 "SVGAElement.h",
17 "SVGAngle.cpp", 25 "SVGAngle.cpp",
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 "graphics/filters/SVGFilterBuilder.h", 301 "graphics/filters/SVGFilterBuilder.h",
294 "properties/SVGAnimatedProperty.cpp", 302 "properties/SVGAnimatedProperty.cpp",
295 "properties/SVGPropertyTearOff.cpp", 303 "properties/SVGPropertyTearOff.cpp",
296 ] 304 ]
297 305
298 configs += [ 306 configs += [
299 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 307 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
300 "//build/config/compiler:no_size_t_to_int_warning", 308 "//build/config/compiler:no_size_t_to_int_warning",
301 ] 309 ]
302 } 310 }
OLDNEW
« 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