| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 "CSSPrimitiveValueMappings.h", | 115 "CSSPrimitiveValueMappings.h", |
| 116 "CSSProperty.cpp", | 116 "CSSProperty.cpp", |
| 117 "CSSProperty.h", | 117 "CSSProperty.h", |
| 118 "CSSPropertyEquality.cpp", | 118 "CSSPropertyEquality.cpp", |
| 119 "CSSPropertyEquality.h", | 119 "CSSPropertyEquality.h", |
| 120 "CSSPropertyIDTemplates.h", | 120 "CSSPropertyIDTemplates.h", |
| 121 "CSSPropertySourceData.cpp", | 121 "CSSPropertySourceData.cpp", |
| 122 "CSSPropertySourceData.h", | 122 "CSSPropertySourceData.h", |
| 123 "CSSQuadValue.cpp", | 123 "CSSQuadValue.cpp", |
| 124 "CSSQuadValue.h", | 124 "CSSQuadValue.h", |
| 125 "CSSRayValue.cpp", |
| 126 "CSSRayValue.h", |
| 125 "CSSReflectValue.cpp", | 127 "CSSReflectValue.cpp", |
| 126 "CSSReflectValue.h", | 128 "CSSReflectValue.h", |
| 127 "CSSReflectionDirection.h", | 129 "CSSReflectionDirection.h", |
| 128 "CSSRule.cpp", | 130 "CSSRule.cpp", |
| 129 "CSSRule.h", | 131 "CSSRule.h", |
| 130 "CSSRuleList.cpp", | 132 "CSSRuleList.cpp", |
| 131 "CSSRuleList.h", | 133 "CSSRuleList.h", |
| 132 "CSSSegmentedFontFace.cpp", | 134 "CSSSegmentedFontFace.cpp", |
| 133 "CSSSegmentedFontFace.h", | 135 "CSSSegmentedFontFace.h", |
| 134 "CSSSelector.cpp", | 136 "CSSSelector.cpp", |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 "resolver/TransformBuilder.h", | 558 "resolver/TransformBuilder.h", |
| 557 "resolver/ViewportStyleResolver.cpp", | 559 "resolver/ViewportStyleResolver.cpp", |
| 558 "resolver/ViewportStyleResolver.h", | 560 "resolver/ViewportStyleResolver.h", |
| 559 ] | 561 ] |
| 560 | 562 |
| 561 configs += [ | 563 configs += [ |
| 562 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 564 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 563 "//build/config/compiler:no_size_t_to_int_warning", | 565 "//build/config/compiler:no_size_t_to_int_warning", |
| 564 ] | 566 ] |
| 565 } | 567 } |
| OLD | NEW |