| 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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 "properties/CSSPropertyAPIColumnWidth.cpp", | 400 "properties/CSSPropertyAPIColumnWidth.cpp", |
| 401 "properties/CSSPropertyAPIContain.cpp", | 401 "properties/CSSPropertyAPIContain.cpp", |
| 402 "properties/CSSPropertyAPIContent.cpp", | 402 "properties/CSSPropertyAPIContent.cpp", |
| 403 "properties/CSSPropertyAPICounterIncrement.cpp", | 403 "properties/CSSPropertyAPICounterIncrement.cpp", |
| 404 "properties/CSSPropertyAPICounterReset.cpp", | 404 "properties/CSSPropertyAPICounterReset.cpp", |
| 405 "properties/CSSPropertyAPICursor.cpp", | 405 "properties/CSSPropertyAPICursor.cpp", |
| 406 "properties/CSSPropertyAPIFilter.cpp", | 406 "properties/CSSPropertyAPIFilter.cpp", |
| 407 "properties/CSSPropertyAPIFlexBasis.cpp", | 407 "properties/CSSPropertyAPIFlexBasis.cpp", |
| 408 "properties/CSSPropertyAPIFlexGrowOrShrink.cpp", | 408 "properties/CSSPropertyAPIFlexGrowOrShrink.cpp", |
| 409 "properties/CSSPropertyAPIFontFamily.cpp", | 409 "properties/CSSPropertyAPIFontFamily.cpp", |
| 410 "properties/CSSPropertyAPIFontFeatureSettings.cpp", |
| 410 "properties/CSSPropertyAPIFontSize.cpp", | 411 "properties/CSSPropertyAPIFontSize.cpp", |
| 411 "properties/CSSPropertyAPIFontSizeAdjust.cpp", | 412 "properties/CSSPropertyAPIFontSizeAdjust.cpp", |
| 412 "properties/CSSPropertyAPIFontVariantCaps.cpp", | 413 "properties/CSSPropertyAPIFontVariantCaps.cpp", |
| 413 "properties/CSSPropertyAPIFontVariantLigatures.cpp", | 414 "properties/CSSPropertyAPIFontVariantLigatures.cpp", |
| 414 "properties/CSSPropertyAPIFontVariantNumeric.cpp", | 415 "properties/CSSPropertyAPIFontVariantNumeric.cpp", |
| 415 "properties/CSSPropertyAPIFontVariationSettings.cpp", | 416 "properties/CSSPropertyAPIFontVariationSettings.cpp", |
| 416 "properties/CSSPropertyAPIFragmentation.cpp", | 417 "properties/CSSPropertyAPIFragmentation.cpp", |
| 417 "properties/CSSPropertyAPIGridAutoFlow.cpp", | 418 "properties/CSSPropertyAPIGridAutoFlow.cpp", |
| 418 "properties/CSSPropertyAPIGridAutoLine.cpp", | 419 "properties/CSSPropertyAPIGridAutoLine.cpp", |
| 419 "properties/CSSPropertyAPIGridLine.cpp", | 420 "properties/CSSPropertyAPIGridLine.cpp", |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 "resolver/TransformBuilder.h", | 552 "resolver/TransformBuilder.h", |
| 552 "resolver/ViewportStyleResolver.cpp", | 553 "resolver/ViewportStyleResolver.cpp", |
| 553 "resolver/ViewportStyleResolver.h", | 554 "resolver/ViewportStyleResolver.h", |
| 554 ] | 555 ] |
| 555 | 556 |
| 556 configs += [ | 557 configs += [ |
| 557 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 558 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 558 "//build/config/compiler:no_size_t_to_int_warning", | 559 "//build/config/compiler:no_size_t_to_int_warning", |
| 559 ] | 560 ] |
| 560 } | 561 } |
| OLD | NEW |