| 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 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 385 "properties/CSSPropertyAPIWebkitHighlight.cpp", | 385 "properties/CSSPropertyAPIWebkitHighlight.cpp", |
| 386 "properties/CSSPropertyAPIWebkitLineClamp.cpp", | 386 "properties/CSSPropertyAPIWebkitLineClamp.cpp", |
| 387 "properties/CSSPropertyAPIWebkitPadding.cpp", | 387 "properties/CSSPropertyAPIWebkitPadding.cpp", |
| 388 "properties/CSSPropertyAPIWebkitTextEmphasisStyle.cpp", | 388 "properties/CSSPropertyAPIWebkitTextEmphasisStyle.cpp", |
| 389 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", | 389 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", |
| 390 "properties/CSSPropertyAPIWillChange.cpp", | 390 "properties/CSSPropertyAPIWillChange.cpp", |
| 391 "properties/CSSPropertyAPIZIndex.cpp", | 391 "properties/CSSPropertyAPIZIndex.cpp", |
| 392 "properties/CSSPropertyAPIZoom.cpp", | 392 "properties/CSSPropertyAPIZoom.cpp", |
| 393 "properties/CSSPropertyAlignmentUtils.cpp", | 393 "properties/CSSPropertyAlignmentUtils.cpp", |
| 394 "properties/CSSPropertyAlignmentUtils.h", | 394 "properties/CSSPropertyAlignmentUtils.h", |
| 395 "properties/CSSPropertyBackgroundComponentUtils.cpp", |
| 396 "properties/CSSPropertyBackgroundComponentUtils.h", |
| 395 "properties/CSSPropertyColumnUtils.cpp", | 397 "properties/CSSPropertyColumnUtils.cpp", |
| 396 "properties/CSSPropertyColumnUtils.h", | 398 "properties/CSSPropertyColumnUtils.h", |
| 397 "properties/CSSPropertyDescriptor.h", | 399 "properties/CSSPropertyDescriptor.h", |
| 398 "properties/CSSPropertyLengthUtils.cpp", | 400 "properties/CSSPropertyLengthUtils.cpp", |
| 399 "properties/CSSPropertyLengthUtils.h", | 401 "properties/CSSPropertyLengthUtils.h", |
| 400 "properties/CSSPropertyShapeUtils.cpp", | 402 "properties/CSSPropertyShapeUtils.cpp", |
| 401 "properties/CSSPropertyShapeUtils.h", | 403 "properties/CSSPropertyShapeUtils.h", |
| 402 "resolver/AnimatedStyleBuilder.cpp", | 404 "resolver/AnimatedStyleBuilder.cpp", |
| 403 "resolver/AnimatedStyleBuilder.h", | 405 "resolver/AnimatedStyleBuilder.h", |
| 404 "resolver/CSSToStyleMap.cpp", | 406 "resolver/CSSToStyleMap.cpp", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 "resolver/TransformBuilder.h", | 445 "resolver/TransformBuilder.h", |
| 444 "resolver/ViewportStyleResolver.cpp", | 446 "resolver/ViewportStyleResolver.cpp", |
| 445 "resolver/ViewportStyleResolver.h", | 447 "resolver/ViewportStyleResolver.h", |
| 446 ] | 448 ] |
| 447 | 449 |
| 448 configs += [ | 450 configs += [ |
| 449 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 451 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 450 "//build/config/compiler:no_size_t_to_int_warning", | 452 "//build/config/compiler:no_size_t_to_int_warning", |
| 451 ] | 453 ] |
| 452 } | 454 } |
| OLD | NEW |