| 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 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 "properties/CSSPropertyAPIOutlineWidth.cpp", | 436 "properties/CSSPropertyAPIOutlineWidth.cpp", |
| 437 "properties/CSSPropertyAPIPadding.cpp", | 437 "properties/CSSPropertyAPIPadding.cpp", |
| 438 "properties/CSSPropertyAPIPage.cpp", | 438 "properties/CSSPropertyAPIPage.cpp", |
| 439 "properties/CSSPropertyAPIPaintOrder.cpp", | 439 "properties/CSSPropertyAPIPaintOrder.cpp", |
| 440 "properties/CSSPropertyAPIPaintStroke.cpp", | 440 "properties/CSSPropertyAPIPaintStroke.cpp", |
| 441 "properties/CSSPropertyAPIPerspective.cpp", | 441 "properties/CSSPropertyAPIPerspective.cpp", |
| 442 "properties/CSSPropertyAPIQuotes.cpp", | 442 "properties/CSSPropertyAPIQuotes.cpp", |
| 443 "properties/CSSPropertyAPIRadius.cpp", | 443 "properties/CSSPropertyAPIRadius.cpp", |
| 444 "properties/CSSPropertyAPIRotate.cpp", | 444 "properties/CSSPropertyAPIRotate.cpp", |
| 445 "properties/CSSPropertyAPIScale.cpp", | 445 "properties/CSSPropertyAPIScale.cpp", |
| 446 "properties/CSSPropertyAPIScrollSnapCoordinate.cpp", | 446 "properties/CSSPropertyAPIScrollPadding.cpp", |
| 447 "properties/CSSPropertyAPIScrollSnapAlign.cpp", |
| 448 "properties/CSSPropertyAPIScrollSnapMargin.cpp", |
| 449 "properties/CSSPropertyAPIScrollSnapType.cpp", |
| 447 "properties/CSSPropertyAPIShapeImageThreshold.cpp", | 450 "properties/CSSPropertyAPIShapeImageThreshold.cpp", |
| 448 "properties/CSSPropertyAPIShapeMargin.cpp", | 451 "properties/CSSPropertyAPIShapeMargin.cpp", |
| 449 "properties/CSSPropertyAPIShapeOutside.cpp", | 452 "properties/CSSPropertyAPIShapeOutside.cpp", |
| 450 "properties/CSSPropertyAPISize.cpp", | 453 "properties/CSSPropertyAPISize.cpp", |
| 451 "properties/CSSPropertyAPIStrokeDasharray.cpp", | 454 "properties/CSSPropertyAPIStrokeDasharray.cpp", |
| 452 "properties/CSSPropertyAPIStrokeMiterlimit.cpp", | 455 "properties/CSSPropertyAPIStrokeMiterlimit.cpp", |
| 453 "properties/CSSPropertyAPIStrokeOrLength.cpp", | 456 "properties/CSSPropertyAPIStrokeOrLength.cpp", |
| 454 "properties/CSSPropertyAPITabSize.cpp", | 457 "properties/CSSPropertyAPITabSize.cpp", |
| 455 "properties/CSSPropertyAPITextDecorationColor.cpp", | 458 "properties/CSSPropertyAPITextDecorationColor.cpp", |
| 456 "properties/CSSPropertyAPITextDecorationLine.cpp", | 459 "properties/CSSPropertyAPITextDecorationLine.cpp", |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 "resolver/TransformBuilder.h", | 559 "resolver/TransformBuilder.h", |
| 557 "resolver/ViewportStyleResolver.cpp", | 560 "resolver/ViewportStyleResolver.cpp", |
| 558 "resolver/ViewportStyleResolver.h", | 561 "resolver/ViewportStyleResolver.h", |
| 559 ] | 562 ] |
| 560 | 563 |
| 561 configs += [ | 564 configs += [ |
| 562 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 565 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 563 "//build/config/compiler:no_size_t_to_int_warning", | 566 "//build/config/compiler:no_size_t_to_int_warning", |
| 564 ] | 567 ] |
| 565 } | 568 } |
| OLD | NEW |