| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 "CSSStyleDeclaration.cpp", | 126 "CSSStyleDeclaration.cpp", |
| 127 "CSSStyleDeclaration.h", | 127 "CSSStyleDeclaration.h", |
| 128 "CSSStyleRule.cpp", | 128 "CSSStyleRule.cpp", |
| 129 "CSSStyleRule.h", | 129 "CSSStyleRule.h", |
| 130 "CSSStyleSheet.cpp", | 130 "CSSStyleSheet.cpp", |
| 131 "CSSStyleSheet.h", | 131 "CSSStyleSheet.h", |
| 132 "CSSSupportsRule.cpp", | 132 "CSSSupportsRule.cpp", |
| 133 "CSSSupportsRule.h", | 133 "CSSSupportsRule.h", |
| 134 "CSSSyntaxDescriptor.cpp", | 134 "CSSSyntaxDescriptor.cpp", |
| 135 "CSSSyntaxDescriptor.h", | 135 "CSSSyntaxDescriptor.h", |
| 136 "CSSTiming.cpp", |
| 137 "CSSTiming.h", |
| 136 "CSSTimingFunctionValue.cpp", | 138 "CSSTimingFunctionValue.cpp", |
| 137 "CSSTimingFunctionValue.h", | 139 "CSSTimingFunctionValue.h", |
| 138 "CSSToLengthConversionData.cpp", | 140 "CSSToLengthConversionData.cpp", |
| 139 "CSSToLengthConversionData.h", | 141 "CSSToLengthConversionData.h", |
| 140 "CSSURIValue.cpp", | 142 "CSSURIValue.cpp", |
| 141 "CSSURIValue.h", | 143 "CSSURIValue.h", |
| 142 "CSSUnicodeRangeValue.cpp", | 144 "CSSUnicodeRangeValue.cpp", |
| 143 "CSSUnicodeRangeValue.h", | 145 "CSSUnicodeRangeValue.h", |
| 144 "CSSUnsetValue.cpp", | 146 "CSSUnsetValue.cpp", |
| 145 "CSSUnsetValue.h", | 147 "CSSUnsetValue.h", |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 "resolver/TransformBuilder.h", | 385 "resolver/TransformBuilder.h", |
| 384 "resolver/ViewportStyleResolver.cpp", | 386 "resolver/ViewportStyleResolver.cpp", |
| 385 "resolver/ViewportStyleResolver.h", | 387 "resolver/ViewportStyleResolver.h", |
| 386 ] | 388 ] |
| 387 | 389 |
| 388 configs += [ | 390 configs += [ |
| 389 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 391 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 390 "//build/config/compiler:no_size_t_to_int_warning", | 392 "//build/config/compiler:no_size_t_to_int_warning", |
| 391 ] | 393 ] |
| 392 } | 394 } |
| OLD | NEW |