| 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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 "StyleRuleImport.h", | 261 "StyleRuleImport.h", |
| 262 "StyleRuleKeyframe.cpp", | 262 "StyleRuleKeyframe.cpp", |
| 263 "StyleRuleKeyframe.h", | 263 "StyleRuleKeyframe.h", |
| 264 "StyleRuleNamespace.h", | 264 "StyleRuleNamespace.h", |
| 265 "StyleSheet.cpp", | 265 "StyleSheet.cpp", |
| 266 "StyleSheet.h", | 266 "StyleSheet.h", |
| 267 "StyleSheetContents.cpp", | 267 "StyleSheetContents.cpp", |
| 268 "StyleSheetContents.h", | 268 "StyleSheetContents.h", |
| 269 "StyleSheetList.cpp", | 269 "StyleSheetList.cpp", |
| 270 "StyleSheetList.h", | 270 "StyleSheetList.h", |
| 271 "cssom/CSSAngleValue.cpp", | |
| 272 "cssom/CSSAngleValue.h", | |
| 273 "cssom/CSSCalcLength.cpp", | |
| 274 "cssom/CSSCalcLength.h", | |
| 275 "cssom/CSSKeywordValue.cpp", | 271 "cssom/CSSKeywordValue.cpp", |
| 276 "cssom/CSSKeywordValue.h", | 272 "cssom/CSSKeywordValue.h", |
| 277 "cssom/CSSLengthValue.cpp", | |
| 278 "cssom/CSSLengthValue.h", | |
| 279 "cssom/CSSMatrixComponent.cpp", | 273 "cssom/CSSMatrixComponent.cpp", |
| 280 "cssom/CSSMatrixComponent.h", | 274 "cssom/CSSMatrixComponent.h", |
| 281 "cssom/CSSNumberValue.h", | |
| 282 "cssom/CSSNumericValue.cpp", | 275 "cssom/CSSNumericValue.cpp", |
| 283 "cssom/CSSNumericValue.h", | 276 "cssom/CSSNumericValue.h", |
| 284 "cssom/CSSOMKeywords.h", | 277 "cssom/CSSOMKeywords.h", |
| 285 "cssom/CSSOMTypes.h", | 278 "cssom/CSSOMTypes.h", |
| 286 "cssom/CSSPerspective.cpp", | 279 "cssom/CSSPerspective.cpp", |
| 287 "cssom/CSSPerspective.h", | 280 "cssom/CSSPerspective.h", |
| 288 "cssom/CSSPositionValue.cpp", | 281 "cssom/CSSPositionValue.cpp", |
| 289 "cssom/CSSPositionValue.h", | 282 "cssom/CSSPositionValue.h", |
| 290 "cssom/CSSResourceValue.h", | 283 "cssom/CSSResourceValue.h", |
| 291 "cssom/CSSRotation.cpp", | 284 "cssom/CSSRotation.cpp", |
| 292 "cssom/CSSRotation.h", | 285 "cssom/CSSRotation.h", |
| 293 "cssom/CSSScale.cpp", | 286 "cssom/CSSScale.cpp", |
| 294 "cssom/CSSScale.h", | 287 "cssom/CSSScale.h", |
| 295 "cssom/CSSSimpleLength.cpp", | |
| 296 "cssom/CSSSimpleLength.h", | |
| 297 "cssom/CSSSkew.cpp", | 288 "cssom/CSSSkew.cpp", |
| 298 "cssom/CSSSkew.h", | 289 "cssom/CSSSkew.h", |
| 299 "cssom/CSSStyleImageValue.cpp", | 290 "cssom/CSSStyleImageValue.cpp", |
| 300 "cssom/CSSStyleImageValue.h", | 291 "cssom/CSSStyleImageValue.h", |
| 301 "cssom/CSSStyleValue.cpp", | 292 "cssom/CSSStyleValue.cpp", |
| 302 "cssom/CSSStyleValue.h", | 293 "cssom/CSSStyleValue.h", |
| 303 "cssom/CSSStyleVariableReferenceValue.h", | 294 "cssom/CSSStyleVariableReferenceValue.h", |
| 304 "cssom/CSSTransformComponent.cpp", | 295 "cssom/CSSTransformComponent.cpp", |
| 305 "cssom/CSSTransformComponent.h", | 296 "cssom/CSSTransformComponent.h", |
| 306 "cssom/CSSTransformValue.cpp", | 297 "cssom/CSSTransformValue.cpp", |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 "resolver/TransformBuilder.h", | 549 "resolver/TransformBuilder.h", |
| 559 "resolver/ViewportStyleResolver.cpp", | 550 "resolver/ViewportStyleResolver.cpp", |
| 560 "resolver/ViewportStyleResolver.h", | 551 "resolver/ViewportStyleResolver.h", |
| 561 ] | 552 ] |
| 562 | 553 |
| 563 configs += [ | 554 configs += [ |
| 564 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 555 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 565 "//build/config/compiler:no_size_t_to_int_warning", | 556 "//build/config/compiler:no_size_t_to_int_warning", |
| 566 ] | 557 ] |
| 567 } | 558 } |
| OLD | NEW |