Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1009)

Side by Side Diff: third_party/WebKit/Source/core/css/BUILD.gn

Issue 2938983002: Implement parseShorthand API for shorthand properties, "overflow", "font" and "font-variant" (Closed)
Patch Set: Change AddProperty's "implicit" to an enum. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 "properties/CSSPropertyMarginUtils.h", 506 "properties/CSSPropertyMarginUtils.h",
507 "properties/CSSPropertyOffsetPathUtils.cpp", 507 "properties/CSSPropertyOffsetPathUtils.cpp",
508 "properties/CSSPropertyOffsetPathUtils.h", 508 "properties/CSSPropertyOffsetPathUtils.h",
509 "properties/CSSPropertyPositionUtils.h", 509 "properties/CSSPropertyPositionUtils.h",
510 "properties/CSSPropertyShapeUtils.cpp", 510 "properties/CSSPropertyShapeUtils.cpp",
511 "properties/CSSPropertyShapeUtils.h", 511 "properties/CSSPropertyShapeUtils.h",
512 "properties/CSSPropertyWebkitBorderWidthUtils.cpp", 512 "properties/CSSPropertyWebkitBorderWidthUtils.cpp",
513 "properties/CSSPropertyWebkitBorderWidthUtils.h", 513 "properties/CSSPropertyWebkitBorderWidthUtils.h",
514 "properties/CSSShorthandPropertyAPIBorderRadius.cpp", 514 "properties/CSSShorthandPropertyAPIBorderRadius.cpp",
515 "properties/CSSShorthandPropertyAPIFlex.cpp", 515 "properties/CSSShorthandPropertyAPIFlex.cpp",
516 "properties/CSSShorthandPropertyAPIFont.cpp",
517 "properties/CSSShorthandPropertyAPIFontVariant.cpp",
518 "properties/CSSShorthandPropertyAPIOverflow.cpp",
516 "properties/CSSShorthandPropertyAPITextDecoration.cpp", 519 "properties/CSSShorthandPropertyAPITextDecoration.cpp",
517 "properties/CSSShorthandPropertyAPIWebkitMarginCollapse.cpp", 520 "properties/CSSShorthandPropertyAPIWebkitMarginCollapse.cpp",
518 "resolver/AnimatedStyleBuilder.cpp", 521 "resolver/AnimatedStyleBuilder.cpp",
519 "resolver/AnimatedStyleBuilder.h", 522 "resolver/AnimatedStyleBuilder.h",
520 "resolver/CSSPropertyPriority.h", 523 "resolver/CSSPropertyPriority.h",
521 "resolver/CSSToStyleMap.cpp", 524 "resolver/CSSToStyleMap.cpp",
522 "resolver/CSSToStyleMap.h", 525 "resolver/CSSToStyleMap.h",
523 "resolver/CSSVariableResolver.cpp", 526 "resolver/CSSVariableResolver.cpp",
524 "resolver/CSSVariableResolver.h", 527 "resolver/CSSVariableResolver.h",
525 "resolver/ElementResolveContext.cpp", 528 "resolver/ElementResolveContext.cpp",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
560 "resolver/TransformBuilder.h", 563 "resolver/TransformBuilder.h",
561 "resolver/ViewportStyleResolver.cpp", 564 "resolver/ViewportStyleResolver.cpp",
562 "resolver/ViewportStyleResolver.h", 565 "resolver/ViewportStyleResolver.h",
563 ] 566 ]
564 567
565 configs += [ 568 configs += [
566 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 569 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
567 "//build/config/compiler:no_size_t_to_int_warning", 570 "//build/config/compiler:no_size_t_to_int_warning",
568 ] 571 ]
569 } 572 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698