| 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 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 "properties/CSSPropertyAPI.h", | 346 "properties/CSSPropertyAPI.h", |
| 347 "properties/CSSPropertyAPIBorderRadius.cpp", | 347 "properties/CSSPropertyAPIBorderRadius.cpp", |
| 348 "properties/CSSPropertyAPICaretColor.cpp", | 348 "properties/CSSPropertyAPICaretColor.cpp", |
| 349 "properties/CSSPropertyAPIClip.cpp", | 349 "properties/CSSPropertyAPIClip.cpp", |
| 350 "properties/CSSPropertyAPIColumnGap.cpp", | 350 "properties/CSSPropertyAPIColumnGap.cpp", |
| 351 "properties/CSSPropertyAPIContain.cpp", | 351 "properties/CSSPropertyAPIContain.cpp", |
| 352 "properties/CSSPropertyAPIFlexBasis.cpp", | 352 "properties/CSSPropertyAPIFlexBasis.cpp", |
| 353 "properties/CSSPropertyAPIFontSizeAdjust.cpp", | 353 "properties/CSSPropertyAPIFontSizeAdjust.cpp", |
| 354 "properties/CSSPropertyAPIFontVariantLigatures.cpp", | 354 "properties/CSSPropertyAPIFontVariantLigatures.cpp", |
| 355 "properties/CSSPropertyAPIFontVariationSettings.cpp", | 355 "properties/CSSPropertyAPIFontVariationSettings.cpp", |
| 356 "properties/CSSPropertyAPILetterAndWordSpacing.cpp", |
| 356 "properties/CSSPropertyAPIOffsetPosition.cpp", | 357 "properties/CSSPropertyAPIOffsetPosition.cpp", |
| 357 "properties/CSSPropertyAPIOutlineColor.cpp", | 358 "properties/CSSPropertyAPIOutlineColor.cpp", |
| 358 "properties/CSSPropertyAPIOutlineOffset.cpp", | 359 "properties/CSSPropertyAPIOutlineOffset.cpp", |
| 359 "properties/CSSPropertyAPIPage.cpp", | 360 "properties/CSSPropertyAPIPage.cpp", |
| 360 "properties/CSSPropertyAPIPaintOrder.cpp", | 361 "properties/CSSPropertyAPIPaintOrder.cpp", |
| 361 "properties/CSSPropertyAPIQuotes.cpp", | 362 "properties/CSSPropertyAPIQuotes.cpp", |
| 362 "properties/CSSPropertyAPIRotate.cpp", | 363 "properties/CSSPropertyAPIRotate.cpp", |
| 363 "properties/CSSPropertyAPIScrollSnapCoordinate.cpp", | 364 "properties/CSSPropertyAPIScrollSnapCoordinate.cpp", |
| 364 "properties/CSSPropertyAPIShapeMargin.cpp", | 365 "properties/CSSPropertyAPIShapeMargin.cpp", |
| 365 "properties/CSSPropertyAPISize.cpp", | 366 "properties/CSSPropertyAPISize.cpp", |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 "resolver/TransformBuilder.h", | 430 "resolver/TransformBuilder.h", |
| 430 "resolver/ViewportStyleResolver.cpp", | 431 "resolver/ViewportStyleResolver.cpp", |
| 431 "resolver/ViewportStyleResolver.h", | 432 "resolver/ViewportStyleResolver.h", |
| 432 ] | 433 ] |
| 433 | 434 |
| 434 configs += [ | 435 configs += [ |
| 435 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 436 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 436 "//build/config/compiler:no_size_t_to_int_warning", | 437 "//build/config/compiler:no_size_t_to_int_warning", |
| 437 ] | 438 ] |
| 438 } | 439 } |
| OLD | NEW |