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