| 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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 "properties/CSSPropertyAPIWebkitTextStrokeWidth.cpp", | 484 "properties/CSSPropertyAPIWebkitTextStrokeWidth.cpp", |
| 485 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", | 485 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", |
| 486 "properties/CSSPropertyAPIWidthOrHeight.cpp", | 486 "properties/CSSPropertyAPIWidthOrHeight.cpp", |
| 487 "properties/CSSPropertyAPIWillChange.cpp", | 487 "properties/CSSPropertyAPIWillChange.cpp", |
| 488 "properties/CSSPropertyAPIZIndex.cpp", | 488 "properties/CSSPropertyAPIZIndex.cpp", |
| 489 "properties/CSSPropertyAPIZoom.cpp", | 489 "properties/CSSPropertyAPIZoom.cpp", |
| 490 "properties/CSSPropertyAlignmentUtils.cpp", | 490 "properties/CSSPropertyAlignmentUtils.cpp", |
| 491 "properties/CSSPropertyAlignmentUtils.h", | 491 "properties/CSSPropertyAlignmentUtils.h", |
| 492 "properties/CSSPropertyColumnUtils.cpp", | 492 "properties/CSSPropertyColumnUtils.cpp", |
| 493 "properties/CSSPropertyColumnUtils.h", | 493 "properties/CSSPropertyColumnUtils.h", |
| 494 "properties/CSSPropertyCounterUtils.cpp", |
| 495 "properties/CSSPropertyCounterUtils.h", |
| 494 "properties/CSSPropertyFontUtils.cpp", | 496 "properties/CSSPropertyFontUtils.cpp", |
| 495 "properties/CSSPropertyFontUtils.h", | 497 "properties/CSSPropertyFontUtils.h", |
| 496 "properties/CSSPropertyLengthUtils.cpp", | 498 "properties/CSSPropertyLengthUtils.cpp", |
| 497 "properties/CSSPropertyLengthUtils.h", | 499 "properties/CSSPropertyLengthUtils.h", |
| 498 "properties/CSSPropertyMarginUtils.cpp", | 500 "properties/CSSPropertyMarginUtils.cpp", |
| 499 "properties/CSSPropertyMarginUtils.h", | 501 "properties/CSSPropertyMarginUtils.h", |
| 500 "properties/CSSPropertyPositionUtils.h", | 502 "properties/CSSPropertyPositionUtils.h", |
| 501 "properties/CSSPropertyShapeUtils.cpp", | 503 "properties/CSSPropertyShapeUtils.cpp", |
| 502 "properties/CSSPropertyShapeUtils.h", | 504 "properties/CSSPropertyShapeUtils.h", |
| 503 "resolver/AnimatedStyleBuilder.cpp", | 505 "resolver/AnimatedStyleBuilder.cpp", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 "resolver/TransformBuilder.h", | 547 "resolver/TransformBuilder.h", |
| 546 "resolver/ViewportStyleResolver.cpp", | 548 "resolver/ViewportStyleResolver.cpp", |
| 547 "resolver/ViewportStyleResolver.h", | 549 "resolver/ViewportStyleResolver.h", |
| 548 ] | 550 ] |
| 549 | 551 |
| 550 configs += [ | 552 configs += [ |
| 551 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 553 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 552 "//build/config/compiler:no_size_t_to_int_warning", | 554 "//build/config/compiler:no_size_t_to_int_warning", |
| 553 ] | 555 ] |
| 554 } | 556 } |
| OLD | NEW |