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