| 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 "BasicShapeFunctions.cpp", | 10 "BasicShapeFunctions.cpp", |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 "CSSStringValue.cpp", | 116 "CSSStringValue.cpp", |
| 117 "CSSStringValue.h", | 117 "CSSStringValue.h", |
| 118 "CSSStyleDeclaration.cpp", | 118 "CSSStyleDeclaration.cpp", |
| 119 "CSSStyleDeclaration.h", | 119 "CSSStyleDeclaration.h", |
| 120 "CSSStyleRule.cpp", | 120 "CSSStyleRule.cpp", |
| 121 "CSSStyleRule.h", | 121 "CSSStyleRule.h", |
| 122 "CSSStyleSheet.cpp", | 122 "CSSStyleSheet.cpp", |
| 123 "CSSStyleSheet.h", | 123 "CSSStyleSheet.h", |
| 124 "CSSSupportsRule.cpp", | 124 "CSSSupportsRule.cpp", |
| 125 "CSSSupportsRule.h", | 125 "CSSSupportsRule.h", |
| 126 "CSSSyntaxDescriptor.cpp", |
| 127 "CSSSyntaxDescriptor.h", |
| 126 "CSSTimingFunctionValue.cpp", | 128 "CSSTimingFunctionValue.cpp", |
| 127 "CSSTimingFunctionValue.h", | 129 "CSSTimingFunctionValue.h", |
| 128 "CSSToLengthConversionData.cpp", | 130 "CSSToLengthConversionData.cpp", |
| 129 "CSSToLengthConversionData.h", | 131 "CSSToLengthConversionData.h", |
| 130 "CSSURIValue.cpp", | 132 "CSSURIValue.cpp", |
| 131 "CSSURIValue.h", | 133 "CSSURIValue.h", |
| 132 "CSSUnicodeRangeValue.cpp", | 134 "CSSUnicodeRangeValue.cpp", |
| 133 "CSSUnicodeRangeValue.h", | 135 "CSSUnicodeRangeValue.h", |
| 134 "CSSUnsetValue.cpp", | 136 "CSSUnsetValue.cpp", |
| 135 "CSSUnsetValue.h", | 137 "CSSUnsetValue.h", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 "MediaQueryListEvent.h", | 185 "MediaQueryListEvent.h", |
| 184 "MediaQueryListListener.cpp", | 186 "MediaQueryListListener.cpp", |
| 185 "MediaQueryListListener.h", | 187 "MediaQueryListListener.h", |
| 186 "MediaQueryMatcher.cpp", | 188 "MediaQueryMatcher.cpp", |
| 187 "MediaQueryMatcher.h", | 189 "MediaQueryMatcher.h", |
| 188 "MediaValues.cpp", | 190 "MediaValues.cpp", |
| 189 "MediaValuesCached.cpp", | 191 "MediaValuesCached.cpp", |
| 190 "MediaValuesDynamic.cpp", | 192 "MediaValuesDynamic.cpp", |
| 191 "PageRuleCollector.cpp", | 193 "PageRuleCollector.cpp", |
| 192 "PageRuleCollector.h", | 194 "PageRuleCollector.h", |
| 195 "PropertyRegistration.cpp", |
| 196 "PropertyRegistration.h", |
| 197 "PropertyRegistry.cpp", |
| 198 "PropertyRegistry.h", |
| 193 "PropertySetCSSStyleDeclaration.cpp", | 199 "PropertySetCSSStyleDeclaration.cpp", |
| 194 "PropertySetCSSStyleDeclaration.h", | 200 "PropertySetCSSStyleDeclaration.h", |
| 195 "PseudoStyleRequest.h", | 201 "PseudoStyleRequest.h", |
| 196 "RemoteFontFaceSource.cpp", | 202 "RemoteFontFaceSource.cpp", |
| 197 "RemoteFontFaceSource.h", | 203 "RemoteFontFaceSource.h", |
| 198 "RuleFeature.cpp", | 204 "RuleFeature.cpp", |
| 199 "RuleFeature.h", | 205 "RuleFeature.h", |
| 200 "RuleSet.cpp", | 206 "RuleSet.cpp", |
| 201 "RuleSet.h", | 207 "RuleSet.h", |
| 202 "SelectorChecker.cpp", | 208 "SelectorChecker.cpp", |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 "resolver/TransformBuilder.h", | 367 "resolver/TransformBuilder.h", |
| 362 "resolver/ViewportStyleResolver.cpp", | 368 "resolver/ViewportStyleResolver.cpp", |
| 363 "resolver/ViewportStyleResolver.h", | 369 "resolver/ViewportStyleResolver.h", |
| 364 ] | 370 ] |
| 365 | 371 |
| 366 configs += [ | 372 configs += [ |
| 367 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 373 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 368 "//build/config/compiler:no_size_t_to_int_warning", | 374 "//build/config/compiler:no_size_t_to_int_warning", |
| 369 ] | 375 ] |
| 370 } | 376 } |
| OLD | NEW |