| 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 | |
| 9 sources = [ | 8 sources = [ |
| 10 "ActiveStyleSheets.cpp", | 9 "ActiveStyleSheets.cpp", |
| 11 "ActiveStyleSheets.h", | 10 "ActiveStyleSheets.h", |
| 12 "BasicShapeFunctions.cpp", | 11 "BasicShapeFunctions.cpp", |
| 13 "BinaryDataFontFaceSource.cpp", | 12 "BinaryDataFontFaceSource.cpp", |
| 14 "BinaryDataFontFaceSource.h", | 13 "BinaryDataFontFaceSource.h", |
| 15 "CSSBasicShapeValues.cpp", | 14 "CSSBasicShapeValues.cpp", |
| 16 "CSSBorderImage.cpp", | 15 "CSSBorderImage.cpp", |
| 17 "CSSBorderImage.h", | 16 "CSSBorderImage.h", |
| 18 "CSSBorderImageSliceValue.cpp", | 17 "CSSBorderImageSliceValue.cpp", |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 "resolver/TransformBuilder.h", | 368 "resolver/TransformBuilder.h", |
| 370 "resolver/ViewportStyleResolver.cpp", | 369 "resolver/ViewportStyleResolver.cpp", |
| 371 "resolver/ViewportStyleResolver.h", | 370 "resolver/ViewportStyleResolver.h", |
| 372 ] | 371 ] |
| 373 | 372 |
| 374 configs += [ | 373 configs += [ |
| 375 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 374 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 376 "//build/config/compiler:no_size_t_to_int_warning", | 375 "//build/config/compiler:no_size_t_to_int_warning", |
| 377 ] | 376 ] |
| 378 } | 377 } |
| OLD | NEW |