| 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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 "properties/CSSPropertyAPIImage.cpp", | 424 "properties/CSSPropertyAPIImage.cpp", |
| 425 "properties/CSSPropertyAPIImageOrientation.cpp", | 425 "properties/CSSPropertyAPIImageOrientation.cpp", |
| 426 "properties/CSSPropertyAPIJustifyItems.cpp", | 426 "properties/CSSPropertyAPIJustifyItems.cpp", |
| 427 "properties/CSSPropertyAPILetterAndWordSpacing.cpp", | 427 "properties/CSSPropertyAPILetterAndWordSpacing.cpp", |
| 428 "properties/CSSPropertyAPILineHeight.cpp", | 428 "properties/CSSPropertyAPILineHeight.cpp", |
| 429 "properties/CSSPropertyAPILineHeightStep.cpp", | 429 "properties/CSSPropertyAPILineHeightStep.cpp", |
| 430 "properties/CSSPropertyAPIMargin.cpp", | 430 "properties/CSSPropertyAPIMargin.cpp", |
| 431 "properties/CSSPropertyAPIMarker.cpp", | 431 "properties/CSSPropertyAPIMarker.cpp", |
| 432 "properties/CSSPropertyAPIOffsetAnchor.cpp", | 432 "properties/CSSPropertyAPIOffsetAnchor.cpp", |
| 433 "properties/CSSPropertyAPIOffsetDistance.cpp", | 433 "properties/CSSPropertyAPIOffsetDistance.cpp", |
| 434 "properties/CSSPropertyAPIOffsetPath.cpp", |
| 434 "properties/CSSPropertyAPIOffsetPosition.cpp", | 435 "properties/CSSPropertyAPIOffsetPosition.cpp", |
| 435 "properties/CSSPropertyAPIOffsetRotate.cpp", | 436 "properties/CSSPropertyAPIOffsetRotate.cpp", |
| 436 "properties/CSSPropertyAPIOpacity.cpp", | 437 "properties/CSSPropertyAPIOpacity.cpp", |
| 437 "properties/CSSPropertyAPIOrder.cpp", | 438 "properties/CSSPropertyAPIOrder.cpp", |
| 438 "properties/CSSPropertyAPIOutlineColor.cpp", | 439 "properties/CSSPropertyAPIOutlineColor.cpp", |
| 439 "properties/CSSPropertyAPIOutlineOffset.cpp", | 440 "properties/CSSPropertyAPIOutlineOffset.cpp", |
| 440 "properties/CSSPropertyAPIOutlineWidth.cpp", | 441 "properties/CSSPropertyAPIOutlineWidth.cpp", |
| 441 "properties/CSSPropertyAPIPadding.cpp", | 442 "properties/CSSPropertyAPIPadding.cpp", |
| 442 "properties/CSSPropertyAPIPage.cpp", | 443 "properties/CSSPropertyAPIPage.cpp", |
| 443 "properties/CSSPropertyAPIPaintOrder.cpp", | 444 "properties/CSSPropertyAPIPaintOrder.cpp", |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 "resolver/TransformBuilder.h", | 556 "resolver/TransformBuilder.h", |
| 556 "resolver/ViewportStyleResolver.cpp", | 557 "resolver/ViewportStyleResolver.cpp", |
| 557 "resolver/ViewportStyleResolver.h", | 558 "resolver/ViewportStyleResolver.h", |
| 558 ] | 559 ] |
| 559 | 560 |
| 560 configs += [ | 561 configs += [ |
| 561 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 562 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 562 "//build/config/compiler:no_size_t_to_int_warning", | 563 "//build/config/compiler:no_size_t_to_int_warning", |
| 563 ] | 564 ] |
| 564 } | 565 } |
| OLD | NEW |