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