| 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 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 "properties/CSSPropertyAPIShapeMargin.cpp", | 359 "properties/CSSPropertyAPIShapeMargin.cpp", |
| 360 "properties/CSSPropertyAPISize.cpp", | 360 "properties/CSSPropertyAPISize.cpp", |
| 361 "properties/CSSPropertyAPIStrokeDasharray.cpp", | 361 "properties/CSSPropertyAPIStrokeDasharray.cpp", |
| 362 "properties/CSSPropertyAPITabSize.cpp", | 362 "properties/CSSPropertyAPITabSize.cpp", |
| 363 "properties/CSSPropertyAPITextDecorationColor.cpp", | 363 "properties/CSSPropertyAPITextDecorationColor.cpp", |
| 364 "properties/CSSPropertyAPITextDecorationSkip.cpp", | 364 "properties/CSSPropertyAPITextDecorationSkip.cpp", |
| 365 "properties/CSSPropertyAPITextIndent.cpp", | 365 "properties/CSSPropertyAPITextIndent.cpp", |
| 366 "properties/CSSPropertyAPITextUnderlinePosition.cpp", | 366 "properties/CSSPropertyAPITextUnderlinePosition.cpp", |
| 367 "properties/CSSPropertyAPITransformOrigin.cpp", | 367 "properties/CSSPropertyAPITransformOrigin.cpp", |
| 368 "properties/CSSPropertyAPITranslate.cpp", | 368 "properties/CSSPropertyAPITranslate.cpp", |
| 369 "properties/CSSPropertyAPIWebkitBoxFlexGroup.cpp", |
| 369 "properties/CSSPropertyAPIWebkitPadding.cpp", | 370 "properties/CSSPropertyAPIWebkitPadding.cpp", |
| 370 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", | 371 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", |
| 371 "properties/CSSPropertyAPIWillChange.cpp", | 372 "properties/CSSPropertyAPIWillChange.cpp", |
| 372 "properties/CSSPropertyAPIZIndex.cpp", | 373 "properties/CSSPropertyAPIZIndex.cpp", |
| 373 "properties/CSSPropertyAPIZoom.cpp", | 374 "properties/CSSPropertyAPIZoom.cpp", |
| 374 "properties/CSSPropertyDescriptor.h", | 375 "properties/CSSPropertyDescriptor.h", |
| 375 "resolver/AnimatedStyleBuilder.cpp", | 376 "resolver/AnimatedStyleBuilder.cpp", |
| 376 "resolver/AnimatedStyleBuilder.h", | 377 "resolver/AnimatedStyleBuilder.h", |
| 377 "resolver/CSSToStyleMap.cpp", | 378 "resolver/CSSToStyleMap.cpp", |
| 378 "resolver/CSSToStyleMap.h", | 379 "resolver/CSSToStyleMap.h", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 "resolver/TransformBuilder.h", | 417 "resolver/TransformBuilder.h", |
| 417 "resolver/ViewportStyleResolver.cpp", | 418 "resolver/ViewportStyleResolver.cpp", |
| 418 "resolver/ViewportStyleResolver.h", | 419 "resolver/ViewportStyleResolver.h", |
| 419 ] | 420 ] |
| 420 | 421 |
| 421 configs += [ | 422 configs += [ |
| 422 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 423 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 423 "//build/config/compiler:no_size_t_to_int_warning", | 424 "//build/config/compiler:no_size_t_to_int_warning", |
| 424 ] | 425 ] |
| 425 } | 426 } |
| OLD | NEW |