| 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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 "properties/CSSPropertyAPIWebkitTextStrokeWidth.cpp", | 485 "properties/CSSPropertyAPIWebkitTextStrokeWidth.cpp", |
| 486 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", | 486 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", |
| 487 "properties/CSSPropertyAPIWidthOrHeight.cpp", | 487 "properties/CSSPropertyAPIWidthOrHeight.cpp", |
| 488 "properties/CSSPropertyAPIWillChange.cpp", | 488 "properties/CSSPropertyAPIWillChange.cpp", |
| 489 "properties/CSSPropertyAPIZIndex.cpp", | 489 "properties/CSSPropertyAPIZIndex.cpp", |
| 490 "properties/CSSPropertyAPIZoom.cpp", | 490 "properties/CSSPropertyAPIZoom.cpp", |
| 491 "properties/CSSPropertyAlignmentUtils.cpp", | 491 "properties/CSSPropertyAlignmentUtils.cpp", |
| 492 "properties/CSSPropertyAlignmentUtils.h", | 492 "properties/CSSPropertyAlignmentUtils.h", |
| 493 "properties/CSSPropertyAnimationNameUtils.cpp", | 493 "properties/CSSPropertyAnimationNameUtils.cpp", |
| 494 "properties/CSSPropertyAnimationNameUtils.h", | 494 "properties/CSSPropertyAnimationNameUtils.h", |
| 495 "properties/CSSPropertyBorderImageUtils.cpp", |
| 496 "properties/CSSPropertyBorderImageUtils.h", |
| 495 "properties/CSSPropertyColumnUtils.cpp", | 497 "properties/CSSPropertyColumnUtils.cpp", |
| 496 "properties/CSSPropertyColumnUtils.h", | 498 "properties/CSSPropertyColumnUtils.h", |
| 497 "properties/CSSPropertyCounterUtils.cpp", | 499 "properties/CSSPropertyCounterUtils.cpp", |
| 498 "properties/CSSPropertyCounterUtils.h", | 500 "properties/CSSPropertyCounterUtils.h", |
| 499 "properties/CSSPropertyFontUtils.cpp", | 501 "properties/CSSPropertyFontUtils.cpp", |
| 500 "properties/CSSPropertyFontUtils.h", | 502 "properties/CSSPropertyFontUtils.h", |
| 501 "properties/CSSPropertyLengthUtils.cpp", | 503 "properties/CSSPropertyLengthUtils.cpp", |
| 502 "properties/CSSPropertyLengthUtils.h", | 504 "properties/CSSPropertyLengthUtils.h", |
| 503 "properties/CSSPropertyMarginUtils.cpp", | 505 "properties/CSSPropertyMarginUtils.cpp", |
| 504 "properties/CSSPropertyMarginUtils.h", | 506 "properties/CSSPropertyMarginUtils.h", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 "resolver/TransformBuilder.h", | 556 "resolver/TransformBuilder.h", |
| 555 "resolver/ViewportStyleResolver.cpp", | 557 "resolver/ViewportStyleResolver.cpp", |
| 556 "resolver/ViewportStyleResolver.h", | 558 "resolver/ViewportStyleResolver.h", |
| 557 ] | 559 ] |
| 558 | 560 |
| 559 configs += [ | 561 configs += [ |
| 560 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 562 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 561 "//build/config/compiler:no_size_t_to_int_warning", | 563 "//build/config/compiler:no_size_t_to_int_warning", |
| 562 ] | 564 ] |
| 563 } | 565 } |
| OLD | NEW |