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("css") { | 7 blink_core_sources("css") { |
8 split_count = 5 | 8 split_count = 5 |
9 sources = [ | 9 sources = [ |
10 "ActiveStyleSheets.cpp", | 10 "ActiveStyleSheets.cpp", |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 "CSSVariableData.cpp", | 175 "CSSVariableData.cpp", |
176 "CSSVariableData.h", | 176 "CSSVariableData.h", |
177 "CSSVariableReferenceValue.cpp", | 177 "CSSVariableReferenceValue.cpp", |
178 "CSSVariableReferenceValue.h", | 178 "CSSVariableReferenceValue.h", |
179 "CSSViewportRule.cpp", | 179 "CSSViewportRule.cpp", |
180 "CSSViewportRule.h", | 180 "CSSViewportRule.h", |
181 "ComputedStyleCSSValueMapping.cpp", | 181 "ComputedStyleCSSValueMapping.cpp", |
182 "ComputedStyleCSSValueMapping.h", | 182 "ComputedStyleCSSValueMapping.h", |
183 "DOMWindowCSS.cpp", | 183 "DOMWindowCSS.cpp", |
184 "DOMWindowCSS.h", | 184 "DOMWindowCSS.h", |
185 "DocumentFontFaceSet.cpp", | |
186 "DocumentFontFaceSet.h", | |
187 "ElementRuleCollector.cpp", | 185 "ElementRuleCollector.cpp", |
188 "ElementRuleCollector.h", | 186 "ElementRuleCollector.h", |
189 "FontFace.cpp", | 187 "FontFace.cpp", |
190 "FontFace.h", | 188 "FontFace.h", |
191 "FontFaceCache.cpp", | 189 "FontFaceCache.cpp", |
192 "FontFaceCache.h", | 190 "FontFaceCache.h", |
193 "FontFaceSet.cpp", | 191 "FontFaceSet.cpp", |
194 "FontFaceSet.h", | 192 "FontFaceSet.h", |
195 "FontFaceSetLoadEvent.cpp", | 193 "FontFaceSetLoadEvent.cpp", |
196 "FontFaceSetLoadEvent.h", | 194 "FontFaceSetLoadEvent.h", |
| 195 "FontFaceSource.cpp", |
| 196 "FontFaceSource.h", |
197 "FontSize.cpp", | 197 "FontSize.cpp", |
198 "FontSize.h", | 198 "FontSize.h", |
199 "FontStyleMatcher.cpp", | 199 "FontStyleMatcher.cpp", |
200 "FontStyleMatcher.h", | 200 "FontStyleMatcher.h", |
201 "HashTools.h", | 201 "HashTools.h", |
202 "KeyframeStyleRuleCSSStyleDeclaration.cpp", | 202 "KeyframeStyleRuleCSSStyleDeclaration.cpp", |
203 "KeyframeStyleRuleCSSStyleDeclaration.h", | 203 "KeyframeStyleRuleCSSStyleDeclaration.h", |
204 "LocalFontFaceSource.cpp", | 204 "LocalFontFaceSource.cpp", |
205 "LocalFontFaceSource.h", | 205 "LocalFontFaceSource.h", |
206 "MediaList.cpp", | 206 "MediaList.cpp", |
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
557 "resolver/TransformBuilder.h", | 557 "resolver/TransformBuilder.h", |
558 "resolver/ViewportStyleResolver.cpp", | 558 "resolver/ViewportStyleResolver.cpp", |
559 "resolver/ViewportStyleResolver.h", | 559 "resolver/ViewportStyleResolver.h", |
560 ] | 560 ] |
561 | 561 |
562 configs += [ | 562 configs += [ |
563 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 563 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
564 "//build/config/compiler:no_size_t_to_int_warning", | 564 "//build/config/compiler:no_size_t_to_int_warning", |
565 ] | 565 ] |
566 } | 566 } |
OLD | NEW |