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

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

Issue 2896543002: Implements CSSPropertyAPI for the animation-name property. (Closed)
Patch Set: Change parseSingleValue method to take local context as input. 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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 "parser/MediaQueryBlockWatcher.h", 371 "parser/MediaQueryBlockWatcher.h",
372 "parser/MediaQueryParser.cpp", 372 "parser/MediaQueryParser.cpp",
373 "parser/MediaQueryParser.h", 373 "parser/MediaQueryParser.h",
374 "parser/SizesAttributeParser.cpp", 374 "parser/SizesAttributeParser.cpp",
375 "parser/SizesAttributeParser.h", 375 "parser/SizesAttributeParser.h",
376 "parser/SizesCalcParser.cpp", 376 "parser/SizesCalcParser.cpp",
377 "parser/SizesCalcParser.h", 377 "parser/SizesCalcParser.h",
378 "properties/CSSPropertyAPIAlignItems.cpp", 378 "properties/CSSPropertyAPIAlignItems.cpp",
379 "properties/CSSPropertyAPIAlignOrJustifyContent.cpp", 379 "properties/CSSPropertyAPIAlignOrJustifyContent.cpp",
380 "properties/CSSPropertyAPIAlignOrJustifySelf.cpp", 380 "properties/CSSPropertyAPIAlignOrJustifySelf.cpp",
381 "properties/CSSPropertyAPIAnimationName.cpp",
381 "properties/CSSPropertyAPIBaselineShift.cpp", 382 "properties/CSSPropertyAPIBaselineShift.cpp",
382 "properties/CSSPropertyAPIBorderImageOutset.cpp", 383 "properties/CSSPropertyAPIBorderImageOutset.cpp",
383 "properties/CSSPropertyAPIBorderImageRepeat.cpp", 384 "properties/CSSPropertyAPIBorderImageRepeat.cpp",
384 "properties/CSSPropertyAPIBorderImageSlice.cpp", 385 "properties/CSSPropertyAPIBorderImageSlice.cpp",
385 "properties/CSSPropertyAPIBorderImageWidth.cpp", 386 "properties/CSSPropertyAPIBorderImageWidth.cpp",
386 "properties/CSSPropertyAPIBorderRadius.cpp", 387 "properties/CSSPropertyAPIBorderRadius.cpp",
387 "properties/CSSPropertyAPIBorderWidth.cpp", 388 "properties/CSSPropertyAPIBorderWidth.cpp",
388 "properties/CSSPropertyAPICaretColor.cpp", 389 "properties/CSSPropertyAPICaretColor.cpp",
389 "properties/CSSPropertyAPIClip.cpp", 390 "properties/CSSPropertyAPIClip.cpp",
390 "properties/CSSPropertyAPIClipPath.cpp", 391 "properties/CSSPropertyAPIClipPath.cpp",
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 "properties/CSSPropertyAPIWebkitPadding.cpp", 483 "properties/CSSPropertyAPIWebkitPadding.cpp",
483 "properties/CSSPropertyAPIWebkitTextEmphasisStyle.cpp", 484 "properties/CSSPropertyAPIWebkitTextEmphasisStyle.cpp",
484 "properties/CSSPropertyAPIWebkitTextStrokeWidth.cpp", 485 "properties/CSSPropertyAPIWebkitTextStrokeWidth.cpp",
485 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", 486 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp",
486 "properties/CSSPropertyAPIWidthOrHeight.cpp", 487 "properties/CSSPropertyAPIWidthOrHeight.cpp",
487 "properties/CSSPropertyAPIWillChange.cpp", 488 "properties/CSSPropertyAPIWillChange.cpp",
488 "properties/CSSPropertyAPIZIndex.cpp", 489 "properties/CSSPropertyAPIZIndex.cpp",
489 "properties/CSSPropertyAPIZoom.cpp", 490 "properties/CSSPropertyAPIZoom.cpp",
490 "properties/CSSPropertyAlignmentUtils.cpp", 491 "properties/CSSPropertyAlignmentUtils.cpp",
491 "properties/CSSPropertyAlignmentUtils.h", 492 "properties/CSSPropertyAlignmentUtils.h",
493 "properties/CSSPropertyAnimationNameUtils.cpp",
494 "properties/CSSPropertyAnimationNameUtils.h",
492 "properties/CSSPropertyColumnUtils.cpp", 495 "properties/CSSPropertyColumnUtils.cpp",
493 "properties/CSSPropertyColumnUtils.h", 496 "properties/CSSPropertyColumnUtils.h",
494 "properties/CSSPropertyCounterUtils.cpp", 497 "properties/CSSPropertyCounterUtils.cpp",
495 "properties/CSSPropertyCounterUtils.h", 498 "properties/CSSPropertyCounterUtils.h",
496 "properties/CSSPropertyFontUtils.cpp", 499 "properties/CSSPropertyFontUtils.cpp",
497 "properties/CSSPropertyFontUtils.h", 500 "properties/CSSPropertyFontUtils.h",
498 "properties/CSSPropertyLengthUtils.cpp", 501 "properties/CSSPropertyLengthUtils.cpp",
499 "properties/CSSPropertyLengthUtils.h", 502 "properties/CSSPropertyLengthUtils.h",
500 "properties/CSSPropertyMarginUtils.cpp", 503 "properties/CSSPropertyMarginUtils.cpp",
501 "properties/CSSPropertyMarginUtils.h", 504 "properties/CSSPropertyMarginUtils.h",
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 "resolver/TransformBuilder.h", 554 "resolver/TransformBuilder.h",
552 "resolver/ViewportStyleResolver.cpp", 555 "resolver/ViewportStyleResolver.cpp",
553 "resolver/ViewportStyleResolver.h", 556 "resolver/ViewportStyleResolver.h",
554 ] 557 ]
555 558
556 configs += [ 559 configs += [
557 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 560 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
558 "//build/config/compiler:no_size_t_to_int_warning", 561 "//build/config/compiler:no_size_t_to_int_warning",
559 ] 562 ]
560 } 563 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/BUILD.gn ('k') | third_party/WebKit/Source/core/css/CSSProperties.json5 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698