| 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 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 502 "properties/CSSPropertyFontUtils.h", | 502 "properties/CSSPropertyFontUtils.h", |
| 503 "properties/CSSPropertyLengthUtils.cpp", | 503 "properties/CSSPropertyLengthUtils.cpp", |
| 504 "properties/CSSPropertyLengthUtils.h", | 504 "properties/CSSPropertyLengthUtils.h", |
| 505 "properties/CSSPropertyMarginUtils.cpp", | 505 "properties/CSSPropertyMarginUtils.cpp", |
| 506 "properties/CSSPropertyMarginUtils.h", | 506 "properties/CSSPropertyMarginUtils.h", |
| 507 "properties/CSSPropertyOffsetPathUtils.cpp", | 507 "properties/CSSPropertyOffsetPathUtils.cpp", |
| 508 "properties/CSSPropertyOffsetPathUtils.h", | 508 "properties/CSSPropertyOffsetPathUtils.h", |
| 509 "properties/CSSPropertyPositionUtils.h", | 509 "properties/CSSPropertyPositionUtils.h", |
| 510 "properties/CSSPropertyShapeUtils.cpp", | 510 "properties/CSSPropertyShapeUtils.cpp", |
| 511 "properties/CSSPropertyShapeUtils.h", | 511 "properties/CSSPropertyShapeUtils.h", |
| 512 "properties/CSSPropertyTransitionPropertyUtils.cpp", |
| 513 "properties/CSSPropertyTransitionPropertyUtils.h", |
| 512 "properties/CSSPropertyWebkitBorderWidthUtils.cpp", | 514 "properties/CSSPropertyWebkitBorderWidthUtils.cpp", |
| 513 "properties/CSSPropertyWebkitBorderWidthUtils.h", | 515 "properties/CSSPropertyWebkitBorderWidthUtils.h", |
| 514 "resolver/AnimatedStyleBuilder.cpp", | 516 "resolver/AnimatedStyleBuilder.cpp", |
| 515 "resolver/AnimatedStyleBuilder.h", | 517 "resolver/AnimatedStyleBuilder.h", |
| 516 "resolver/CSSPropertyPriority.h", | 518 "resolver/CSSPropertyPriority.h", |
| 517 "resolver/CSSToStyleMap.cpp", | 519 "resolver/CSSToStyleMap.cpp", |
| 518 "resolver/CSSToStyleMap.h", | 520 "resolver/CSSToStyleMap.h", |
| 519 "resolver/CSSVariableResolver.cpp", | 521 "resolver/CSSVariableResolver.cpp", |
| 520 "resolver/CSSVariableResolver.h", | 522 "resolver/CSSVariableResolver.h", |
| 521 "resolver/ElementResolveContext.cpp", | 523 "resolver/ElementResolveContext.cpp", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 "resolver/TransformBuilder.h", | 558 "resolver/TransformBuilder.h", |
| 557 "resolver/ViewportStyleResolver.cpp", | 559 "resolver/ViewportStyleResolver.cpp", |
| 558 "resolver/ViewportStyleResolver.h", | 560 "resolver/ViewportStyleResolver.h", |
| 559 ] | 561 ] |
| 560 | 562 |
| 561 configs += [ | 563 configs += [ |
| 562 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 564 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 563 "//build/config/compiler:no_size_t_to_int_warning", | 565 "//build/config/compiler:no_size_t_to_int_warning", |
| 564 ] | 566 ] |
| 565 } | 567 } |
| OLD | NEW |