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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 "CSSTimingFunctionValue.h", | 141 "CSSTimingFunctionValue.h", |
142 "CSSToLengthConversionData.cpp", | 142 "CSSToLengthConversionData.cpp", |
143 "CSSToLengthConversionData.h", | 143 "CSSToLengthConversionData.h", |
144 "CSSURIValue.cpp", | 144 "CSSURIValue.cpp", |
145 "CSSURIValue.h", | 145 "CSSURIValue.h", |
146 "CSSUnicodeRangeValue.cpp", | 146 "CSSUnicodeRangeValue.cpp", |
147 "CSSUnicodeRangeValue.h", | 147 "CSSUnicodeRangeValue.h", |
148 "CSSUnsetValue.cpp", | 148 "CSSUnsetValue.cpp", |
149 "CSSUnsetValue.h", | 149 "CSSUnsetValue.h", |
150 "CSSValue.cpp", | 150 "CSSValue.cpp", |
| 151 "CSSValueIDMappings.h", |
151 "CSSValueList.cpp", | 152 "CSSValueList.cpp", |
152 "CSSValuePair.cpp", | 153 "CSSValuePair.cpp", |
153 "CSSValuePair.h", | 154 "CSSValuePair.h", |
154 "CSSValuePool.cpp", | 155 "CSSValuePool.cpp", |
155 "CSSValuePool.h", | 156 "CSSValuePool.h", |
156 "CSSVariableData.cpp", | 157 "CSSVariableData.cpp", |
157 "CSSVariableData.h", | 158 "CSSVariableData.h", |
158 "CSSVariableReferenceValue.cpp", | 159 "CSSVariableReferenceValue.cpp", |
159 "CSSVariableReferenceValue.h", | 160 "CSSVariableReferenceValue.h", |
160 "CSSViewportRule.cpp", | 161 "CSSViewportRule.cpp", |
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
504 "resolver/TransformBuilder.h", | 505 "resolver/TransformBuilder.h", |
505 "resolver/ViewportStyleResolver.cpp", | 506 "resolver/ViewportStyleResolver.cpp", |
506 "resolver/ViewportStyleResolver.h", | 507 "resolver/ViewportStyleResolver.h", |
507 ] | 508 ] |
508 | 509 |
509 configs += [ | 510 configs += [ |
510 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 511 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
511 "//build/config/compiler:no_size_t_to_int_warning", | 512 "//build/config/compiler:no_size_t_to_int_warning", |
512 ] | 513 ] |
513 } | 514 } |
OLD | NEW |