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 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 "properties/CSSPropertyAPIOutlineColor.cpp", | 362 "properties/CSSPropertyAPIOutlineColor.cpp", |
363 "properties/CSSPropertyAPIOutlineOffset.cpp", | 363 "properties/CSSPropertyAPIOutlineOffset.cpp", |
364 "properties/CSSPropertyAPIPage.cpp", | 364 "properties/CSSPropertyAPIPage.cpp", |
365 "properties/CSSPropertyAPIPaintOrder.cpp", | 365 "properties/CSSPropertyAPIPaintOrder.cpp", |
366 "properties/CSSPropertyAPIPaintStroke.cpp", | 366 "properties/CSSPropertyAPIPaintStroke.cpp", |
367 "properties/CSSPropertyAPIQuotes.cpp", | 367 "properties/CSSPropertyAPIQuotes.cpp", |
368 "properties/CSSPropertyAPIRotate.cpp", | 368 "properties/CSSPropertyAPIRotate.cpp", |
369 "properties/CSSPropertyAPIScale.cpp", | 369 "properties/CSSPropertyAPIScale.cpp", |
370 "properties/CSSPropertyAPIScrollSnapCoordinate.cpp", | 370 "properties/CSSPropertyAPIScrollSnapCoordinate.cpp", |
371 "properties/CSSPropertyAPIShapeMargin.cpp", | 371 "properties/CSSPropertyAPIShapeMargin.cpp", |
| 372 "properties/CSSPropertyAPIShapeOutside.cpp", |
372 "properties/CSSPropertyAPISize.cpp", | 373 "properties/CSSPropertyAPISize.cpp", |
373 "properties/CSSPropertyAPIStrokeDasharray.cpp", | 374 "properties/CSSPropertyAPIStrokeDasharray.cpp", |
374 "properties/CSSPropertyAPITabSize.cpp", | 375 "properties/CSSPropertyAPITabSize.cpp", |
375 "properties/CSSPropertyAPITextDecorationColor.cpp", | 376 "properties/CSSPropertyAPITextDecorationColor.cpp", |
376 "properties/CSSPropertyAPITextDecorationSkip.cpp", | 377 "properties/CSSPropertyAPITextDecorationSkip.cpp", |
377 "properties/CSSPropertyAPITextIndent.cpp", | 378 "properties/CSSPropertyAPITextIndent.cpp", |
378 "properties/CSSPropertyAPITextSizeAdjust.cpp", | 379 "properties/CSSPropertyAPITextSizeAdjust.cpp", |
379 "properties/CSSPropertyAPITextUnderlinePosition.cpp", | 380 "properties/CSSPropertyAPITextUnderlinePosition.cpp", |
380 "properties/CSSPropertyAPITransformOrigin.cpp", | 381 "properties/CSSPropertyAPITransformOrigin.cpp", |
381 "properties/CSSPropertyAPITranslate.cpp", | 382 "properties/CSSPropertyAPITranslate.cpp", |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
438 "resolver/TransformBuilder.h", | 439 "resolver/TransformBuilder.h", |
439 "resolver/ViewportStyleResolver.cpp", | 440 "resolver/ViewportStyleResolver.cpp", |
440 "resolver/ViewportStyleResolver.h", | 441 "resolver/ViewportStyleResolver.h", |
441 ] | 442 ] |
442 | 443 |
443 configs += [ | 444 configs += [ |
444 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 445 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
445 "//build/config/compiler:no_size_t_to_int_warning", | 446 "//build/config/compiler:no_size_t_to_int_warning", |
446 ] | 447 ] |
447 } | 448 } |
OLD | NEW |