| 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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 "properties/CSSPropertyAPIClip.cpp", | 348 "properties/CSSPropertyAPIClip.cpp", |
| 349 "properties/CSSPropertyAPIColumnGap.cpp", | 349 "properties/CSSPropertyAPIColumnGap.cpp", |
| 350 "properties/CSSPropertyAPIFlexBasis.cpp", | 350 "properties/CSSPropertyAPIFlexBasis.cpp", |
| 351 "properties/CSSPropertyAPIFontSizeAdjust.cpp", | 351 "properties/CSSPropertyAPIFontSizeAdjust.cpp", |
| 352 "properties/CSSPropertyAPIFontVariationSettings.cpp", | 352 "properties/CSSPropertyAPIFontVariationSettings.cpp", |
| 353 "properties/CSSPropertyAPIOffsetPosition.cpp", | 353 "properties/CSSPropertyAPIOffsetPosition.cpp", |
| 354 "properties/CSSPropertyAPIOutlineOffset.cpp", | 354 "properties/CSSPropertyAPIOutlineOffset.cpp", |
| 355 "properties/CSSPropertyAPIPage.cpp", | 355 "properties/CSSPropertyAPIPage.cpp", |
| 356 "properties/CSSPropertyAPIPaintOrder.cpp", | 356 "properties/CSSPropertyAPIPaintOrder.cpp", |
| 357 "properties/CSSPropertyAPIRotate.cpp", | 357 "properties/CSSPropertyAPIRotate.cpp", |
| 358 "properties/CSSPropertyAPIScrollSnapCoordinate.cpp", |
| 358 "properties/CSSPropertyAPISize.cpp", | 359 "properties/CSSPropertyAPISize.cpp", |
| 359 "properties/CSSPropertyAPITextDecorationColor.cpp", | 360 "properties/CSSPropertyAPITextDecorationColor.cpp", |
| 360 "properties/CSSPropertyAPITextDecorationSkip.cpp", | 361 "properties/CSSPropertyAPITextDecorationSkip.cpp", |
| 361 "properties/CSSPropertyAPITextUnderlinePosition.cpp", | 362 "properties/CSSPropertyAPITextUnderlinePosition.cpp", |
| 362 "properties/CSSPropertyAPITransformOrigin.cpp", | 363 "properties/CSSPropertyAPITransformOrigin.cpp", |
| 363 "properties/CSSPropertyAPITranslate.cpp", | 364 "properties/CSSPropertyAPITranslate.cpp", |
| 364 "properties/CSSPropertyAPIWebkitPadding.cpp", | 365 "properties/CSSPropertyAPIWebkitPadding.cpp", |
| 365 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", | 366 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", |
| 366 "properties/CSSPropertyAPIWillChange.cpp", | 367 "properties/CSSPropertyAPIWillChange.cpp", |
| 367 "properties/CSSPropertyAPIZIndex.cpp", | 368 "properties/CSSPropertyAPIZIndex.cpp", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 "resolver/TransformBuilder.h", | 412 "resolver/TransformBuilder.h", |
| 412 "resolver/ViewportStyleResolver.cpp", | 413 "resolver/ViewportStyleResolver.cpp", |
| 413 "resolver/ViewportStyleResolver.h", | 414 "resolver/ViewportStyleResolver.h", |
| 414 ] | 415 ] |
| 415 | 416 |
| 416 configs += [ | 417 configs += [ |
| 417 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 418 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 418 "//build/config/compiler:no_size_t_to_int_warning", | 419 "//build/config/compiler:no_size_t_to_int_warning", |
| 419 ] | 420 ] |
| 420 } | 421 } |
| OLD | NEW |