| 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 "parser/CSSVariableParser.h", | 341 "parser/CSSVariableParser.h", |
| 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/CSSPropertyAPIBorderRadius.cpp", | 347 "properties/CSSPropertyAPIBorderRadius.cpp", |
| 348 "properties/CSSPropertyAPICaretColor.cpp", | 348 "properties/CSSPropertyAPICaretColor.cpp", |
| 349 "properties/CSSPropertyAPIClip.cpp", | 349 "properties/CSSPropertyAPIClip.cpp", |
| 350 "properties/CSSPropertyAPIColumnGap.cpp", | 350 "properties/CSSPropertyAPIColumnGap.cpp", |
| 351 "properties/CSSPropertyAPID.cpp", |
| 351 "properties/CSSPropertyAPIFlexBasis.cpp", | 352 "properties/CSSPropertyAPIFlexBasis.cpp", |
| 352 "properties/CSSPropertyAPIFontSizeAdjust.cpp", | 353 "properties/CSSPropertyAPIFontSizeAdjust.cpp", |
| 353 "properties/CSSPropertyAPIFontVariationSettings.cpp", | 354 "properties/CSSPropertyAPIFontVariationSettings.cpp", |
| 354 "properties/CSSPropertyAPIOffsetPosition.cpp", | 355 "properties/CSSPropertyAPIOffsetPosition.cpp", |
| 355 "properties/CSSPropertyAPIOutlineOffset.cpp", | 356 "properties/CSSPropertyAPIOutlineOffset.cpp", |
| 356 "properties/CSSPropertyAPIPage.cpp", | 357 "properties/CSSPropertyAPIPage.cpp", |
| 357 "properties/CSSPropertyAPIPaintOrder.cpp", | 358 "properties/CSSPropertyAPIPaintOrder.cpp", |
| 358 "properties/CSSPropertyAPIQuotes.cpp", | 359 "properties/CSSPropertyAPIQuotes.cpp", |
| 359 "properties/CSSPropertyAPIRotate.cpp", | 360 "properties/CSSPropertyAPIRotate.cpp", |
| 360 "properties/CSSPropertyAPIScrollSnapCoordinate.cpp", | 361 "properties/CSSPropertyAPIScrollSnapCoordinate.cpp", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 "resolver/TransformBuilder.h", | 423 "resolver/TransformBuilder.h", |
| 423 "resolver/ViewportStyleResolver.cpp", | 424 "resolver/ViewportStyleResolver.cpp", |
| 424 "resolver/ViewportStyleResolver.h", | 425 "resolver/ViewportStyleResolver.h", |
| 425 ] | 426 ] |
| 426 | 427 |
| 427 configs += [ | 428 configs += [ |
| 428 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 429 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 429 "//build/config/compiler:no_size_t_to_int_warning", | 430 "//build/config/compiler:no_size_t_to_int_warning", |
| 430 ] | 431 ] |
| 431 } | 432 } |
| OLD | NEW |