| 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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 "properties/CSSPropertyAPIBaselineShift.cpp", | 351 "properties/CSSPropertyAPIBaselineShift.cpp", |
| 352 "properties/CSSPropertyAPIBorderRadius.cpp", | 352 "properties/CSSPropertyAPIBorderRadius.cpp", |
| 353 "properties/CSSPropertyAPICaretColor.cpp", | 353 "properties/CSSPropertyAPICaretColor.cpp", |
| 354 "properties/CSSPropertyAPIClip.cpp", | 354 "properties/CSSPropertyAPIClip.cpp", |
| 355 "properties/CSSPropertyAPIClipPath.cpp", | 355 "properties/CSSPropertyAPIClipPath.cpp", |
| 356 "properties/CSSPropertyAPIColor.cpp", | 356 "properties/CSSPropertyAPIColor.cpp", |
| 357 "properties/CSSPropertyAPIColumnCount.cpp", | 357 "properties/CSSPropertyAPIColumnCount.cpp", |
| 358 "properties/CSSPropertyAPIColumnGap.cpp", | 358 "properties/CSSPropertyAPIColumnGap.cpp", |
| 359 "properties/CSSPropertyAPIColumnRuleWidth.cpp", | 359 "properties/CSSPropertyAPIColumnRuleWidth.cpp", |
| 360 "properties/CSSPropertyAPIColumnSpan.cpp", | 360 "properties/CSSPropertyAPIColumnSpan.cpp", |
| 361 "properties/CSSPropertyAPIColumnWidth.cpp", |
| 361 "properties/CSSPropertyAPIContain.cpp", | 362 "properties/CSSPropertyAPIContain.cpp", |
| 362 "properties/CSSPropertyAPIContent.cpp", | 363 "properties/CSSPropertyAPIContent.cpp", |
| 363 "properties/CSSPropertyAPICursor.cpp", | 364 "properties/CSSPropertyAPICursor.cpp", |
| 364 "properties/CSSPropertyAPIFlexBasis.cpp", | 365 "properties/CSSPropertyAPIFlexBasis.cpp", |
| 365 "properties/CSSPropertyAPIFontSizeAdjust.cpp", | 366 "properties/CSSPropertyAPIFontSizeAdjust.cpp", |
| 366 "properties/CSSPropertyAPIFontVariantCaps.cpp", | 367 "properties/CSSPropertyAPIFontVariantCaps.cpp", |
| 367 "properties/CSSPropertyAPIFontVariantLigatures.cpp", | 368 "properties/CSSPropertyAPIFontVariantLigatures.cpp", |
| 368 "properties/CSSPropertyAPIFontVariantNumeric.cpp", | 369 "properties/CSSPropertyAPIFontVariantNumeric.cpp", |
| 369 "properties/CSSPropertyAPIFontVariationSettings.cpp", | 370 "properties/CSSPropertyAPIFontVariationSettings.cpp", |
| 370 "properties/CSSPropertyAPIGridAutoFlow.cpp", | 371 "properties/CSSPropertyAPIGridAutoFlow.cpp", |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 "resolver/TransformBuilder.h", | 474 "resolver/TransformBuilder.h", |
| 474 "resolver/ViewportStyleResolver.cpp", | 475 "resolver/ViewportStyleResolver.cpp", |
| 475 "resolver/ViewportStyleResolver.h", | 476 "resolver/ViewportStyleResolver.h", |
| 476 ] | 477 ] |
| 477 | 478 |
| 478 configs += [ | 479 configs += [ |
| 479 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 480 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 480 "//build/config/compiler:no_size_t_to_int_warning", | 481 "//build/config/compiler:no_size_t_to_int_warning", |
| 481 ] | 482 ] |
| 482 } | 483 } |
| OLD | NEW |