| 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 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 "properties/CSSPropertyAPIColumnSpan.cpp", | 366 "properties/CSSPropertyAPIColumnSpan.cpp", |
| 367 "properties/CSSPropertyAPIColumnWidth.cpp", | 367 "properties/CSSPropertyAPIColumnWidth.cpp", |
| 368 "properties/CSSPropertyAPIContain.cpp", | 368 "properties/CSSPropertyAPIContain.cpp", |
| 369 "properties/CSSPropertyAPIContent.cpp", | 369 "properties/CSSPropertyAPIContent.cpp", |
| 370 "properties/CSSPropertyAPICounterIncrement.cpp", | 370 "properties/CSSPropertyAPICounterIncrement.cpp", |
| 371 "properties/CSSPropertyAPICounterReset.cpp", | 371 "properties/CSSPropertyAPICounterReset.cpp", |
| 372 "properties/CSSPropertyAPICursor.cpp", | 372 "properties/CSSPropertyAPICursor.cpp", |
| 373 "properties/CSSPropertyAPIFilter.cpp", | 373 "properties/CSSPropertyAPIFilter.cpp", |
| 374 "properties/CSSPropertyAPIFlexBasis.cpp", | 374 "properties/CSSPropertyAPIFlexBasis.cpp", |
| 375 "properties/CSSPropertyAPIFlexGrowOrShrink.cpp", | 375 "properties/CSSPropertyAPIFlexGrowOrShrink.cpp", |
| 376 "properties/CSSPropertyAPIFontFamily.cpp", |
| 376 "properties/CSSPropertyAPIFontSizeAdjust.cpp", | 377 "properties/CSSPropertyAPIFontSizeAdjust.cpp", |
| 377 "properties/CSSPropertyAPIFontVariantCaps.cpp", | 378 "properties/CSSPropertyAPIFontVariantCaps.cpp", |
| 378 "properties/CSSPropertyAPIFontVariantLigatures.cpp", | 379 "properties/CSSPropertyAPIFontVariantLigatures.cpp", |
| 379 "properties/CSSPropertyAPIFontVariantNumeric.cpp", | 380 "properties/CSSPropertyAPIFontVariantNumeric.cpp", |
| 380 "properties/CSSPropertyAPIFontVariationSettings.cpp", | 381 "properties/CSSPropertyAPIFontVariationSettings.cpp", |
| 381 "properties/CSSPropertyAPIGridAutoFlow.cpp", | 382 "properties/CSSPropertyAPIGridAutoFlow.cpp", |
| 382 "properties/CSSPropertyAPIGridAutoLine.cpp", | 383 "properties/CSSPropertyAPIGridAutoLine.cpp", |
| 383 "properties/CSSPropertyAPIGridLine.cpp", | 384 "properties/CSSPropertyAPIGridLine.cpp", |
| 384 "properties/CSSPropertyAPIGridTemplateAreas.cpp", | 385 "properties/CSSPropertyAPIGridTemplateAreas.cpp", |
| 385 "properties/CSSPropertyAPIGridTemplateLine.cpp", | 386 "properties/CSSPropertyAPIGridTemplateLine.cpp", |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 "resolver/TransformBuilder.h", | 508 "resolver/TransformBuilder.h", |
| 508 "resolver/ViewportStyleResolver.cpp", | 509 "resolver/ViewportStyleResolver.cpp", |
| 509 "resolver/ViewportStyleResolver.h", | 510 "resolver/ViewportStyleResolver.h", |
| 510 ] | 511 ] |
| 511 | 512 |
| 512 configs += [ | 513 configs += [ |
| 513 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 514 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 514 "//build/config/compiler:no_size_t_to_int_warning", | 515 "//build/config/compiler:no_size_t_to_int_warning", |
| 515 ] | 516 ] |
| 516 } | 517 } |
| OLD | NEW |