| 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", |
| 11 "ActiveStyleSheets.h", |
| 10 "BasicShapeFunctions.cpp", | 12 "BasicShapeFunctions.cpp", |
| 11 "BinaryDataFontFaceSource.cpp", | 13 "BinaryDataFontFaceSource.cpp", |
| 12 "BinaryDataFontFaceSource.h", | 14 "BinaryDataFontFaceSource.h", |
| 13 "CSSBasicShapeValues.cpp", | 15 "CSSBasicShapeValues.cpp", |
| 14 "CSSBorderImage.cpp", | 16 "CSSBorderImage.cpp", |
| 15 "CSSBorderImage.h", | 17 "CSSBorderImage.h", |
| 16 "CSSBorderImageSliceValue.cpp", | 18 "CSSBorderImageSliceValue.cpp", |
| 17 "CSSBorderImageSliceValue.h", | 19 "CSSBorderImageSliceValue.h", |
| 18 "CSSCalculationValue.cpp", | 20 "CSSCalculationValue.cpp", |
| 19 "CSSCalculationValue.h", | 21 "CSSCalculationValue.h", |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 "resolver/TransformBuilder.h", | 363 "resolver/TransformBuilder.h", |
| 362 "resolver/ViewportStyleResolver.cpp", | 364 "resolver/ViewportStyleResolver.cpp", |
| 363 "resolver/ViewportStyleResolver.h", | 365 "resolver/ViewportStyleResolver.h", |
| 364 ] | 366 ] |
| 365 | 367 |
| 366 configs += [ | 368 configs += [ |
| 367 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 369 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 368 "//build/config/compiler:no_size_t_to_int_warning", | 370 "//build/config/compiler:no_size_t_to_int_warning", |
| 369 ] | 371 ] |
| 370 } | 372 } |
| OLD | NEW |