| 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 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 493 "properties/CSSPropertyColumnUtils.cpp", | 493 "properties/CSSPropertyColumnUtils.cpp", |
| 494 "properties/CSSPropertyColumnUtils.h", | 494 "properties/CSSPropertyColumnUtils.h", |
| 495 "properties/CSSPropertyCounterUtils.cpp", | 495 "properties/CSSPropertyCounterUtils.cpp", |
| 496 "properties/CSSPropertyCounterUtils.h", | 496 "properties/CSSPropertyCounterUtils.h", |
| 497 "properties/CSSPropertyFontUtils.cpp", | 497 "properties/CSSPropertyFontUtils.cpp", |
| 498 "properties/CSSPropertyFontUtils.h", | 498 "properties/CSSPropertyFontUtils.h", |
| 499 "properties/CSSPropertyLengthUtils.cpp", | 499 "properties/CSSPropertyLengthUtils.cpp", |
| 500 "properties/CSSPropertyLengthUtils.h", | 500 "properties/CSSPropertyLengthUtils.h", |
| 501 "properties/CSSPropertyMarginUtils.cpp", | 501 "properties/CSSPropertyMarginUtils.cpp", |
| 502 "properties/CSSPropertyMarginUtils.h", | 502 "properties/CSSPropertyMarginUtils.h", |
| 503 "properties/CSSPropertyOffsetPathUtils.cpp", |
| 504 "properties/CSSPropertyOffsetPathUtils.h", |
| 503 "properties/CSSPropertyPositionUtils.h", | 505 "properties/CSSPropertyPositionUtils.h", |
| 504 "properties/CSSPropertyShapeUtils.cpp", | 506 "properties/CSSPropertyShapeUtils.cpp", |
| 505 "properties/CSSPropertyShapeUtils.h", | 507 "properties/CSSPropertyShapeUtils.h", |
| 506 "resolver/AnimatedStyleBuilder.cpp", | 508 "resolver/AnimatedStyleBuilder.cpp", |
| 507 "resolver/AnimatedStyleBuilder.h", | 509 "resolver/AnimatedStyleBuilder.h", |
| 508 "resolver/CSSPropertyPriority.h", | 510 "resolver/CSSPropertyPriority.h", |
| 509 "resolver/CSSToStyleMap.cpp", | 511 "resolver/CSSToStyleMap.cpp", |
| 510 "resolver/CSSToStyleMap.h", | 512 "resolver/CSSToStyleMap.h", |
| 511 "resolver/CSSVariableResolver.cpp", | 513 "resolver/CSSVariableResolver.cpp", |
| 512 "resolver/CSSVariableResolver.h", | 514 "resolver/CSSVariableResolver.h", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 "resolver/TransformBuilder.h", | 550 "resolver/TransformBuilder.h", |
| 549 "resolver/ViewportStyleResolver.cpp", | 551 "resolver/ViewportStyleResolver.cpp", |
| 550 "resolver/ViewportStyleResolver.h", | 552 "resolver/ViewportStyleResolver.h", |
| 551 ] | 553 ] |
| 552 | 554 |
| 553 configs += [ | 555 configs += [ |
| 554 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 556 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 555 "//build/config/compiler:no_size_t_to_int_warning", | 557 "//build/config/compiler:no_size_t_to_int_warning", |
| 556 ] | 558 ] |
| 557 } | 559 } |
| OLD | NEW |