| 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 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 "properties/CSSPropertyMarginUtils.h", | 505 "properties/CSSPropertyMarginUtils.h", |
| 506 "properties/CSSPropertyOffsetPathUtils.cpp", | 506 "properties/CSSPropertyOffsetPathUtils.cpp", |
| 507 "properties/CSSPropertyOffsetPathUtils.h", | 507 "properties/CSSPropertyOffsetPathUtils.h", |
| 508 "properties/CSSPropertyPositionUtils.h", | 508 "properties/CSSPropertyPositionUtils.h", |
| 509 "properties/CSSPropertyShapeUtils.cpp", | 509 "properties/CSSPropertyShapeUtils.cpp", |
| 510 "properties/CSSPropertyShapeUtils.h", | 510 "properties/CSSPropertyShapeUtils.h", |
| 511 "properties/CSSPropertyWebkitBorderWidthUtils.cpp", | 511 "properties/CSSPropertyWebkitBorderWidthUtils.cpp", |
| 512 "properties/CSSPropertyWebkitBorderWidthUtils.h", | 512 "properties/CSSPropertyWebkitBorderWidthUtils.h", |
| 513 "properties/CSSShorthandPropertyAPIBorderRadius.cpp", | 513 "properties/CSSShorthandPropertyAPIBorderRadius.cpp", |
| 514 "properties/CSSShorthandPropertyAPIFlex.cpp", | 514 "properties/CSSShorthandPropertyAPIFlex.cpp", |
| 515 "properties/CSSShorthandPropertyAPIFont.cpp", |
| 516 "properties/CSSShorthandPropertyAPIFontVariant.cpp", |
| 517 "properties/CSSShorthandPropertyAPIOverflow.cpp", |
| 515 "properties/CSSShorthandPropertyAPITextDecoration.cpp", | 518 "properties/CSSShorthandPropertyAPITextDecoration.cpp", |
| 516 "properties/CSSShorthandPropertyAPIWebkitMarginCollapse.cpp", | 519 "properties/CSSShorthandPropertyAPIWebkitMarginCollapse.cpp", |
| 517 "resolver/AnimatedStyleBuilder.cpp", | 520 "resolver/AnimatedStyleBuilder.cpp", |
| 518 "resolver/AnimatedStyleBuilder.h", | 521 "resolver/AnimatedStyleBuilder.h", |
| 519 "resolver/CSSPropertyPriority.h", | 522 "resolver/CSSPropertyPriority.h", |
| 520 "resolver/CSSToStyleMap.cpp", | 523 "resolver/CSSToStyleMap.cpp", |
| 521 "resolver/CSSToStyleMap.h", | 524 "resolver/CSSToStyleMap.h", |
| 522 "resolver/CSSVariableResolver.cpp", | 525 "resolver/CSSVariableResolver.cpp", |
| 523 "resolver/CSSVariableResolver.h", | 526 "resolver/CSSVariableResolver.h", |
| 524 "resolver/ElementResolveContext.cpp", | 527 "resolver/ElementResolveContext.cpp", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 "resolver/TransformBuilder.h", | 562 "resolver/TransformBuilder.h", |
| 560 "resolver/ViewportStyleResolver.cpp", | 563 "resolver/ViewportStyleResolver.cpp", |
| 561 "resolver/ViewportStyleResolver.h", | 564 "resolver/ViewportStyleResolver.h", |
| 562 ] | 565 ] |
| 563 | 566 |
| 564 configs += [ | 567 configs += [ |
| 565 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 568 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 566 "//build/config/compiler:no_size_t_to_int_warning", | 569 "//build/config/compiler:no_size_t_to_int_warning", |
| 567 ] | 570 ] |
| 568 } | 571 } |
| OLD | NEW |