| 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 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 504 "properties/CSSPropertyFontUtils.h", | 504 "properties/CSSPropertyFontUtils.h", |
| 505 "properties/CSSPropertyLengthUtils.cpp", | 505 "properties/CSSPropertyLengthUtils.cpp", |
| 506 "properties/CSSPropertyLengthUtils.h", | 506 "properties/CSSPropertyLengthUtils.h", |
| 507 "properties/CSSPropertyMarginUtils.cpp", | 507 "properties/CSSPropertyMarginUtils.cpp", |
| 508 "properties/CSSPropertyMarginUtils.h", | 508 "properties/CSSPropertyMarginUtils.h", |
| 509 "properties/CSSPropertyOffsetPathUtils.cpp", | 509 "properties/CSSPropertyOffsetPathUtils.cpp", |
| 510 "properties/CSSPropertyOffsetPathUtils.h", | 510 "properties/CSSPropertyOffsetPathUtils.h", |
| 511 "properties/CSSPropertyPositionUtils.h", | 511 "properties/CSSPropertyPositionUtils.h", |
| 512 "properties/CSSPropertyShapeUtils.cpp", | 512 "properties/CSSPropertyShapeUtils.cpp", |
| 513 "properties/CSSPropertyShapeUtils.h", | 513 "properties/CSSPropertyShapeUtils.h", |
| 514 "properties/CSSPropertyTransformUtils.cpp", |
| 515 "properties/CSSPropertyTransformUtils.h", |
| 514 "properties/CSSPropertyTransitionPropertyUtils.cpp", | 516 "properties/CSSPropertyTransitionPropertyUtils.cpp", |
| 515 "properties/CSSPropertyTransitionPropertyUtils.h", | 517 "properties/CSSPropertyTransitionPropertyUtils.h", |
| 516 "properties/CSSPropertyWebkitBorderWidthUtils.cpp", | 518 "properties/CSSPropertyWebkitBorderWidthUtils.cpp", |
| 517 "properties/CSSPropertyWebkitBorderWidthUtils.h", | 519 "properties/CSSPropertyWebkitBorderWidthUtils.h", |
| 518 "properties/CSSShorthandPropertyAPIBorderRadius.cpp", | 520 "properties/CSSShorthandPropertyAPIBorderRadius.cpp", |
| 519 "properties/CSSShorthandPropertyAPIFlex.cpp", | 521 "properties/CSSShorthandPropertyAPIFlex.cpp", |
| 520 "properties/CSSShorthandPropertyAPITextDecoration.cpp", | 522 "properties/CSSShorthandPropertyAPITextDecoration.cpp", |
| 521 "properties/CSSShorthandPropertyAPIWebkitMarginCollapse.cpp", | 523 "properties/CSSShorthandPropertyAPIWebkitMarginCollapse.cpp", |
| 522 "resolver/AnimatedStyleBuilder.cpp", | 524 "resolver/AnimatedStyleBuilder.cpp", |
| 523 "resolver/AnimatedStyleBuilder.h", | 525 "resolver/AnimatedStyleBuilder.h", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 "resolver/TransformBuilder.h", | 566 "resolver/TransformBuilder.h", |
| 565 "resolver/ViewportStyleResolver.cpp", | 567 "resolver/ViewportStyleResolver.cpp", |
| 566 "resolver/ViewportStyleResolver.h", | 568 "resolver/ViewportStyleResolver.h", |
| 567 ] | 569 ] |
| 568 | 570 |
| 569 configs += [ | 571 configs += [ |
| 570 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 572 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 571 "//build/config/compiler:no_size_t_to_int_warning", | 573 "//build/config/compiler:no_size_t_to_int_warning", |
| 572 ] | 574 ] |
| 573 } | 575 } |
| OLD | NEW |