| 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 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 "properties/CSSPropertyAPIWebkitTextStrokeWidth.cpp", | 446 "properties/CSSPropertyAPIWebkitTextStrokeWidth.cpp", |
| 447 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", | 447 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", |
| 448 "properties/CSSPropertyAPIWidthOrHeight.cpp", | 448 "properties/CSSPropertyAPIWidthOrHeight.cpp", |
| 449 "properties/CSSPropertyAPIWillChange.cpp", | 449 "properties/CSSPropertyAPIWillChange.cpp", |
| 450 "properties/CSSPropertyAPIZIndex.cpp", | 450 "properties/CSSPropertyAPIZIndex.cpp", |
| 451 "properties/CSSPropertyAPIZoom.cpp", | 451 "properties/CSSPropertyAPIZoom.cpp", |
| 452 "properties/CSSPropertyAlignmentUtils.cpp", | 452 "properties/CSSPropertyAlignmentUtils.cpp", |
| 453 "properties/CSSPropertyAlignmentUtils.h", | 453 "properties/CSSPropertyAlignmentUtils.h", |
| 454 "properties/CSSPropertyColumnUtils.cpp", | 454 "properties/CSSPropertyColumnUtils.cpp", |
| 455 "properties/CSSPropertyColumnUtils.h", | 455 "properties/CSSPropertyColumnUtils.h", |
| 456 "properties/CSSPropertyDescriptor.h", | |
| 457 "properties/CSSPropertyLengthUtils.cpp", | 456 "properties/CSSPropertyLengthUtils.cpp", |
| 458 "properties/CSSPropertyLengthUtils.h", | 457 "properties/CSSPropertyLengthUtils.h", |
| 459 "properties/CSSPropertyMarginUtils.cpp", | 458 "properties/CSSPropertyMarginUtils.cpp", |
| 460 "properties/CSSPropertyMarginUtils.h", | 459 "properties/CSSPropertyMarginUtils.h", |
| 461 "properties/CSSPropertyShapeUtils.cpp", | 460 "properties/CSSPropertyShapeUtils.cpp", |
| 462 "properties/CSSPropertyShapeUtils.h", | 461 "properties/CSSPropertyShapeUtils.h", |
| 463 "resolver/AnimatedStyleBuilder.cpp", | 462 "resolver/AnimatedStyleBuilder.cpp", |
| 464 "resolver/AnimatedStyleBuilder.h", | 463 "resolver/AnimatedStyleBuilder.h", |
| 465 "resolver/CSSToStyleMap.cpp", | 464 "resolver/CSSToStyleMap.cpp", |
| 466 "resolver/CSSToStyleMap.h", | 465 "resolver/CSSToStyleMap.h", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 504 "resolver/TransformBuilder.h", | 503 "resolver/TransformBuilder.h", |
| 505 "resolver/ViewportStyleResolver.cpp", | 504 "resolver/ViewportStyleResolver.cpp", |
| 506 "resolver/ViewportStyleResolver.h", | 505 "resolver/ViewportStyleResolver.h", |
| 507 ] | 506 ] |
| 508 | 507 |
| 509 configs += [ | 508 configs += [ |
| 510 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 509 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 511 "//build/config/compiler:no_size_t_to_int_warning", | 510 "//build/config/compiler:no_size_t_to_int_warning", |
| 512 ] | 511 ] |
| 513 } | 512 } |
| OLD | NEW |