| OLD | NEW | 
|---|
| 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 | 8   # Split into multiple static libraries on Windows official builds, where we | 
| 9   # run into a 2GB max size limit. | 9   # run into a 2GB max size limit. | 
| 10   if (is_win && is_official_build) { | 10   if (is_win && is_official_build) { | 
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 260     "SVGTextPositioningElement.cpp", | 260     "SVGTextPositioningElement.cpp", | 
| 261     "SVGTextPositioningElement.h", | 261     "SVGTextPositioningElement.h", | 
| 262     "SVGTitleElement.cpp", | 262     "SVGTitleElement.cpp", | 
| 263     "SVGTitleElement.h", | 263     "SVGTitleElement.h", | 
| 264     "SVGTransform.cpp", | 264     "SVGTransform.cpp", | 
| 265     "SVGTransformDistance.cpp", | 265     "SVGTransformDistance.cpp", | 
| 266     "SVGTransformDistance.h", | 266     "SVGTransformDistance.h", | 
| 267     "SVGTransformList.cpp", | 267     "SVGTransformList.cpp", | 
| 268     "SVGTransformListTearOff.cpp", | 268     "SVGTransformListTearOff.cpp", | 
| 269     "SVGTransformTearOff.cpp", | 269     "SVGTransformTearOff.cpp", | 
|  | 270     "SVGTreeScopeResources.cpp", | 
|  | 271     "SVGTreeScopeResources.h", | 
| 270     "SVGURIReference.cpp", | 272     "SVGURIReference.cpp", | 
| 271     "SVGURIReference.h", | 273     "SVGURIReference.h", | 
| 272     "SVGUnitTypes.cpp", | 274     "SVGUnitTypes.cpp", | 
| 273     "SVGUnitTypes.h", | 275     "SVGUnitTypes.h", | 
| 274     "SVGUnknownElement.cpp", | 276     "SVGUnknownElement.cpp", | 
| 275     "SVGUnknownElement.h", | 277     "SVGUnknownElement.h", | 
| 276     "SVGUseElement.cpp", | 278     "SVGUseElement.cpp", | 
| 277     "SVGUseElement.h", | 279     "SVGUseElement.h", | 
| 278     "SVGViewElement.cpp", | 280     "SVGViewElement.cpp", | 
| 279     "SVGViewElement.h", | 281     "SVGViewElement.h", | 
| (...skipping 17 matching lines...) Expand all  Loading... | 
| 297     "graphics/filters/SVGFilterBuilder.h", | 299     "graphics/filters/SVGFilterBuilder.h", | 
| 298     "properties/SVGAnimatedProperty.cpp", | 300     "properties/SVGAnimatedProperty.cpp", | 
| 299     "properties/SVGPropertyTearOff.cpp", | 301     "properties/SVGPropertyTearOff.cpp", | 
| 300   ] | 302   ] | 
| 301 | 303 | 
| 302   configs += [ | 304   configs += [ | 
| 303     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 305     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 
| 304     "//build/config/compiler:no_size_t_to_int_warning", | 306     "//build/config/compiler:no_size_t_to_int_warning", | 
| 305   ] | 307   ] | 
| 306 } | 308 } | 
| OLD | NEW | 
|---|