| 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 sources = [ | 8 sources = [ |
| 9 "LayoutSVGBlock.cpp", | 9 "LayoutSVGBlock.cpp", |
| 10 "LayoutSVGBlock.h", | 10 "LayoutSVGBlock.h", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "LayoutSVGTSpan.cpp", | 59 "LayoutSVGTSpan.cpp", |
| 60 "LayoutSVGTSpan.h", | 60 "LayoutSVGTSpan.h", |
| 61 "LayoutSVGText.cpp", | 61 "LayoutSVGText.cpp", |
| 62 "LayoutSVGText.h", | 62 "LayoutSVGText.h", |
| 63 "LayoutSVGTextPath.cpp", | 63 "LayoutSVGTextPath.cpp", |
| 64 "LayoutSVGTextPath.h", | 64 "LayoutSVGTextPath.h", |
| 65 "LayoutSVGTransformableContainer.cpp", | 65 "LayoutSVGTransformableContainer.cpp", |
| 66 "LayoutSVGTransformableContainer.h", | 66 "LayoutSVGTransformableContainer.h", |
| 67 "LayoutSVGViewportContainer.cpp", | 67 "LayoutSVGViewportContainer.cpp", |
| 68 "LayoutSVGViewportContainer.h", | 68 "LayoutSVGViewportContainer.h", |
| 69 "ReferenceFilterBuilder.cpp", |
| 70 "ReferenceFilterBuilder.h", |
| 69 "SVGCharacterData.h", | 71 "SVGCharacterData.h", |
| 70 "SVGLayoutSupport.cpp", | 72 "SVGLayoutSupport.cpp", |
| 71 "SVGLayoutSupport.h", | 73 "SVGLayoutSupport.h", |
| 72 "SVGLayoutTreeAsText.cpp", | 74 "SVGLayoutTreeAsText.cpp", |
| 73 "SVGLayoutTreeAsText.h", | 75 "SVGLayoutTreeAsText.h", |
| 74 "SVGMarkerData.h", | 76 "SVGMarkerData.h", |
| 75 "SVGResources.cpp", | 77 "SVGResources.cpp", |
| 76 "SVGResources.h", | 78 "SVGResources.h", |
| 77 "SVGResourcesCache.cpp", | 79 "SVGResourcesCache.cpp", |
| 78 "SVGResourcesCycleSolver.cpp", | 80 "SVGResourcesCycleSolver.cpp", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 92 "SVGTextMetrics.h", | 94 "SVGTextMetrics.h", |
| 93 "SVGTextQuery.cpp", | 95 "SVGTextQuery.cpp", |
| 94 "SVGTextQuery.h", | 96 "SVGTextQuery.h", |
| 95 ] | 97 ] |
| 96 | 98 |
| 97 configs += [ | 99 configs += [ |
| 98 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 100 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 99 "//build/config/compiler:no_size_t_to_int_warning", | 101 "//build/config/compiler:no_size_t_to_int_warning", |
| 100 ] | 102 ] |
| 101 } | 103 } |
| OLD | NEW |