| 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 "StyleSheetList.cpp", | 247 "StyleSheetList.cpp", |
| 248 "StyleSheetList.h", | 248 "StyleSheetList.h", |
| 249 "cssom/CSSAngleValue.cpp", | 249 "cssom/CSSAngleValue.cpp", |
| 250 "cssom/CSSAngleValue.h", | 250 "cssom/CSSAngleValue.h", |
| 251 "cssom/CSSCalcLength.cpp", | 251 "cssom/CSSCalcLength.cpp", |
| 252 "cssom/CSSCalcLength.h", | 252 "cssom/CSSCalcLength.h", |
| 253 "cssom/CSSKeywordValue.cpp", | 253 "cssom/CSSKeywordValue.cpp", |
| 254 "cssom/CSSKeywordValue.h", | 254 "cssom/CSSKeywordValue.h", |
| 255 "cssom/CSSLengthValue.cpp", | 255 "cssom/CSSLengthValue.cpp", |
| 256 "cssom/CSSLengthValue.h", | 256 "cssom/CSSLengthValue.h", |
| 257 "cssom/CSSMatrixTransformComponent.cpp", | 257 "cssom/CSSMatrixComponent.cpp", |
| 258 "cssom/CSSMatrixTransformComponent.h", | 258 "cssom/CSSMatrixComponent.h", |
| 259 "cssom/CSSNumberValue.h", | 259 "cssom/CSSNumberValue.h", |
| 260 "cssom/CSSOMKeywords.h", | 260 "cssom/CSSOMKeywords.h", |
| 261 "cssom/CSSOMTypes.h", | 261 "cssom/CSSOMTypes.h", |
| 262 "cssom/CSSPerspective.cpp", | 262 "cssom/CSSPerspective.cpp", |
| 263 "cssom/CSSPerspective.h", | 263 "cssom/CSSPerspective.h", |
| 264 "cssom/CSSPositionValue.cpp", | 264 "cssom/CSSPositionValue.cpp", |
| 265 "cssom/CSSPositionValue.h", | 265 "cssom/CSSPositionValue.h", |
| 266 "cssom/CSSResourceValue.h", | 266 "cssom/CSSResourceValue.h", |
| 267 "cssom/CSSRotation.cpp", | 267 "cssom/CSSRotation.cpp", |
| 268 "cssom/CSSRotation.h", | 268 "cssom/CSSRotation.h", |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 503 "resolver/TransformBuilder.h", | 503 "resolver/TransformBuilder.h", |
| 504 "resolver/ViewportStyleResolver.cpp", | 504 "resolver/ViewportStyleResolver.cpp", |
| 505 "resolver/ViewportStyleResolver.h", | 505 "resolver/ViewportStyleResolver.h", |
| 506 ] | 506 ] |
| 507 | 507 |
| 508 configs += [ | 508 configs += [ |
| 509 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 509 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 510 "//build/config/compiler:no_size_t_to_int_warning", | 510 "//build/config/compiler:no_size_t_to_int_warning", |
| 511 ] | 511 ] |
| 512 } | 512 } |
| OLD | NEW |