| 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", |
| 11 "ActiveStyleSheets.h", | 11 "ActiveStyleSheets.h", |
| 12 "BasicShapeFunctions.cpp", | 12 "BasicShapeFunctions.cpp", |
| 13 "BinaryDataFontFaceSource.cpp", | 13 "BinaryDataFontFaceSource.cpp", |
| 14 "BinaryDataFontFaceSource.h", | 14 "BinaryDataFontFaceSource.h", |
| 15 "CSSBasicShapeValues.cpp", | 15 "CSSBasicShapeValues.cpp", |
| 16 "CSSBorderImage.cpp", | 16 "CSSBorderImage.cpp", |
| 17 "CSSBorderImage.h", | 17 "CSSBorderImage.h", |
| 18 "CSSBorderImageSliceValue.cpp", | 18 "CSSBorderImageSliceValue.cpp", |
| 19 "CSSBorderImageSliceValue.h", | 19 "CSSBorderImageSliceValue.h", |
| 20 "CSSCalculationValue.cpp", | 20 "CSSCalculationValue.cpp", |
| 21 "CSSCalculationValue.h", | 21 "CSSCalculationValue.h", |
| 22 "CSSColorValue.cpp", | 22 "CSSColorValue.cpp", |
| 23 "CSSColorValue.h", | 23 "CSSColorValue.h", |
| 24 "CSSComputedStyleDeclaration.cpp", | 24 "CSSComputedStyleDeclaration.cpp", |
| 25 "CSSConditionRule.cpp", |
| 26 "CSSConditionRule.h", |
| 25 "CSSContentDistributionValue.cpp", | 27 "CSSContentDistributionValue.cpp", |
| 26 "CSSContentDistributionValue.h", | 28 "CSSContentDistributionValue.h", |
| 27 "CSSCounterValue.cpp", | 29 "CSSCounterValue.cpp", |
| 28 "CSSCounterValue.h", | 30 "CSSCounterValue.h", |
| 29 "CSSCrossfadeValue.cpp", | 31 "CSSCrossfadeValue.cpp", |
| 30 "CSSCrossfadeValue.h", | 32 "CSSCrossfadeValue.h", |
| 31 "CSSCursorImageValue.cpp", | 33 "CSSCursorImageValue.cpp", |
| 32 "CSSCustomFontData.h", | 34 "CSSCustomFontData.h", |
| 33 "CSSCustomIdentValue.cpp", | 35 "CSSCustomIdentValue.cpp", |
| 34 "CSSCustomIdentValue.h", | 36 "CSSCustomIdentValue.h", |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 "resolver/TransformBuilder.h", | 375 "resolver/TransformBuilder.h", |
| 374 "resolver/ViewportStyleResolver.cpp", | 376 "resolver/ViewportStyleResolver.cpp", |
| 375 "resolver/ViewportStyleResolver.h", | 377 "resolver/ViewportStyleResolver.h", |
| 376 ] | 378 ] |
| 377 | 379 |
| 378 configs += [ | 380 configs += [ |
| 379 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 381 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 380 "//build/config/compiler:no_size_t_to_int_warning", | 382 "//build/config/compiler:no_size_t_to_int_warning", |
| 381 ] | 383 ] |
| 382 } | 384 } |
| OLD | NEW |