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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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/CSSPropertyAPIFontVariationSettings.cpp", |
353 "properties/CSSPropertyAPIOffsetPosition.cpp", | 353 "properties/CSSPropertyAPIOffsetPosition.cpp", |
354 "properties/CSSPropertyAPIOutlineOffset.cpp", | 354 "properties/CSSPropertyAPIOutlineOffset.cpp", |
355 "properties/CSSPropertyAPIPage.cpp", | 355 "properties/CSSPropertyAPIPage.cpp", |
356 "properties/CSSPropertyAPIPaintOrder.cpp", | 356 "properties/CSSPropertyAPIPaintOrder.cpp", |
| 357 "properties/CSSPropertyAPIRotate.cpp", |
357 "properties/CSSPropertyAPISize.cpp", | 358 "properties/CSSPropertyAPISize.cpp", |
358 "properties/CSSPropertyAPITextDecorationColor.cpp", | 359 "properties/CSSPropertyAPITextDecorationColor.cpp", |
359 "properties/CSSPropertyAPITextDecorationSkip.cpp", | 360 "properties/CSSPropertyAPITextDecorationSkip.cpp", |
360 "properties/CSSPropertyAPITextUnderlinePosition.cpp", | 361 "properties/CSSPropertyAPITextUnderlinePosition.cpp", |
361 "properties/CSSPropertyAPITransformOrigin.cpp", | 362 "properties/CSSPropertyAPITransformOrigin.cpp", |
362 "properties/CSSPropertyAPITranslate.cpp", | 363 "properties/CSSPropertyAPITranslate.cpp", |
363 "properties/CSSPropertyAPIWebkitPadding.cpp", | 364 "properties/CSSPropertyAPIWebkitPadding.cpp", |
364 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", | 365 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", |
365 "properties/CSSPropertyAPIWillChange.cpp", | 366 "properties/CSSPropertyAPIWillChange.cpp", |
366 "properties/CSSPropertyAPIZIndex.cpp", | 367 "properties/CSSPropertyAPIZIndex.cpp", |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 "resolver/TransformBuilder.h", | 411 "resolver/TransformBuilder.h", |
411 "resolver/ViewportStyleResolver.cpp", | 412 "resolver/ViewportStyleResolver.cpp", |
412 "resolver/ViewportStyleResolver.h", | 413 "resolver/ViewportStyleResolver.h", |
413 ] | 414 ] |
414 | 415 |
415 configs += [ | 416 configs += [ |
416 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 417 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
417 "//build/config/compiler:no_size_t_to_int_warning", | 418 "//build/config/compiler:no_size_t_to_int_warning", |
418 ] | 419 ] |
419 } | 420 } |
OLD | NEW |