| 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 "parser/MediaQueryBlockWatcher.cpp", | 342 "parser/MediaQueryBlockWatcher.cpp", |
| 343 "parser/MediaQueryParser.cpp", | 343 "parser/MediaQueryParser.cpp", |
| 344 "parser/SizesAttributeParser.cpp", | 344 "parser/SizesAttributeParser.cpp", |
| 345 "parser/SizesCalcParser.cpp", | 345 "parser/SizesCalcParser.cpp", |
| 346 "properties/CSSPropertyAPI.h", | 346 "properties/CSSPropertyAPI.h", |
| 347 "properties/CSSPropertyAPICaretColor.cpp", | 347 "properties/CSSPropertyAPICaretColor.cpp", |
| 348 "properties/CSSPropertyAPIClip.cpp", | 348 "properties/CSSPropertyAPIClip.cpp", |
| 349 "properties/CSSPropertyAPIColumnGap.cpp", | 349 "properties/CSSPropertyAPIColumnGap.cpp", |
| 350 "properties/CSSPropertyAPIFlexBasis.cpp", | 350 "properties/CSSPropertyAPIFlexBasis.cpp", |
| 351 "properties/CSSPropertyAPIFontSizeAdjust.cpp", | 351 "properties/CSSPropertyAPIFontSizeAdjust.cpp", |
| 352 "properties/CSSPropertyAPIFontVariationSettings.cpp", |
| 352 "properties/CSSPropertyAPISize.cpp", | 353 "properties/CSSPropertyAPISize.cpp", |
| 353 "properties/CSSPropertyAPITextDecorationColor.cpp", | 354 "properties/CSSPropertyAPITextDecorationColor.cpp", |
| 354 "properties/CSSPropertyAPITextDecorationSkip.cpp", | 355 "properties/CSSPropertyAPITextDecorationSkip.cpp", |
| 355 "properties/CSSPropertyAPITextUnderlinePosition.cpp", | 356 "properties/CSSPropertyAPITextUnderlinePosition.cpp", |
| 356 "properties/CSSPropertyAPITransformOrigin.cpp", | 357 "properties/CSSPropertyAPITransformOrigin.cpp", |
| 357 "properties/CSSPropertyAPITranslate.cpp", | 358 "properties/CSSPropertyAPITranslate.cpp", |
| 358 "properties/CSSPropertyAPIWebkitPadding.cpp", | 359 "properties/CSSPropertyAPIWebkitPadding.cpp", |
| 359 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", | 360 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", |
| 360 "properties/CSSPropertyAPIWillChange.cpp", | 361 "properties/CSSPropertyAPIWillChange.cpp", |
| 361 "properties/CSSPropertyAPIZIndex.cpp", | 362 "properties/CSSPropertyAPIZIndex.cpp", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 "resolver/TransformBuilder.h", | 406 "resolver/TransformBuilder.h", |
| 406 "resolver/ViewportStyleResolver.cpp", | 407 "resolver/ViewportStyleResolver.cpp", |
| 407 "resolver/ViewportStyleResolver.h", | 408 "resolver/ViewportStyleResolver.h", |
| 408 ] | 409 ] |
| 409 | 410 |
| 410 configs += [ | 411 configs += [ |
| 411 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 412 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 412 "//build/config/compiler:no_size_t_to_int_warning", | 413 "//build/config/compiler:no_size_t_to_int_warning", |
| 413 ] | 414 ] |
| 414 } | 415 } |
| OLD | NEW |