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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 "LayoutSVGViewportContainer.h", | 68 "LayoutSVGViewportContainer.h", |
69 "SVGCharacterData.h", | 69 "SVGCharacterData.h", |
70 "SVGLayoutSupport.cpp", | 70 "SVGLayoutSupport.cpp", |
71 "SVGLayoutSupport.h", | 71 "SVGLayoutSupport.h", |
72 "SVGLayoutTreeAsText.cpp", | 72 "SVGLayoutTreeAsText.cpp", |
73 "SVGLayoutTreeAsText.h", | 73 "SVGLayoutTreeAsText.h", |
74 "SVGMarkerData.h", | 74 "SVGMarkerData.h", |
75 "SVGResources.cpp", | 75 "SVGResources.cpp", |
76 "SVGResources.h", | 76 "SVGResources.h", |
77 "SVGResourcesCache.cpp", | 77 "SVGResourcesCache.cpp", |
| 78 "SVGResourcesCache.h", |
78 "SVGResourcesCycleSolver.cpp", | 79 "SVGResourcesCycleSolver.cpp", |
79 "SVGResourcesCycleSolver.h", | 80 "SVGResourcesCycleSolver.h", |
80 "SVGTextChunkBuilder.cpp", | 81 "SVGTextChunkBuilder.cpp", |
81 "SVGTextChunkBuilder.h", | 82 "SVGTextChunkBuilder.h", |
82 "SVGTextFragment.h", | 83 "SVGTextFragment.h", |
83 "SVGTextLayoutAttributesBuilder.cpp", | 84 "SVGTextLayoutAttributesBuilder.cpp", |
84 "SVGTextLayoutAttributesBuilder.h", | 85 "SVGTextLayoutAttributesBuilder.h", |
85 "SVGTextLayoutEngine.cpp", | 86 "SVGTextLayoutEngine.cpp", |
86 "SVGTextLayoutEngine.h", | 87 "SVGTextLayoutEngine.h", |
87 "SVGTextLayoutEngineBaseline.cpp", | 88 "SVGTextLayoutEngineBaseline.cpp", |
88 "SVGTextLayoutEngineBaseline.h", | 89 "SVGTextLayoutEngineBaseline.h", |
89 "SVGTextLayoutEngineSpacing.cpp", | 90 "SVGTextLayoutEngineSpacing.cpp", |
90 "SVGTextLayoutEngineSpacing.h", | 91 "SVGTextLayoutEngineSpacing.h", |
91 "SVGTextMetrics.cpp", | 92 "SVGTextMetrics.cpp", |
92 "SVGTextMetrics.h", | 93 "SVGTextMetrics.h", |
93 "SVGTextQuery.cpp", | 94 "SVGTextQuery.cpp", |
94 "SVGTextQuery.h", | 95 "SVGTextQuery.h", |
95 ] | 96 ] |
96 | 97 |
97 configs += [ | 98 configs += [ |
98 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 99 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
99 "//build/config/compiler:no_size_t_to_int_warning", | 100 "//build/config/compiler:no_size_t_to_int_warning", |
100 ] | 101 ] |
101 } | 102 } |
OLD | NEW |