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

Side by Side Diff: third_party/WebKit/Source/core/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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//build/config/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/toolchain/toolchain.gni") 6 import("//build/toolchain/toolchain.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/split_static_library.gni") 8 import("//build/split_static_library.gni")
9 import("//testing/libfuzzer/fuzzer_test.gni") 9 import("//testing/libfuzzer/fuzzer_test.gni")
10 import("//third_party/WebKit/Source/bindings/bindings.gni") 10 import("//third_party/WebKit/Source/bindings/bindings.gni")
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 "../build/scripts/templates/CSSPropertyDescriptor.h.tmpl", 450 "../build/scripts/templates/CSSPropertyDescriptor.h.tmpl",
451 "../build/scripts/templates/CSSPropertyAPIFiles.h.tmpl", 451 "../build/scripts/templates/CSSPropertyAPIFiles.h.tmpl",
452 "../build/scripts/templates/CSSPropertyAPI.h.tmpl", 452 "../build/scripts/templates/CSSPropertyAPI.h.tmpl",
453 ] 453 ]
454 in_files = [ "css/properties/CSSPropertyAPIMethods.json5" ] 454 in_files = [ "css/properties/CSSPropertyAPIMethods.json5" ]
455 outputs = [ 455 outputs = [
456 "$blink_core_output_dir/css/properties/CSSPropertyAPI.h", 456 "$blink_core_output_dir/css/properties/CSSPropertyAPI.h",
457 "$blink_core_output_dir/css/properties/CSSPropertyAPIAlignItems.h", 457 "$blink_core_output_dir/css/properties/CSSPropertyAPIAlignItems.h",
458 "$blink_core_output_dir/css/properties/CSSPropertyAPIAlignOrJustifyContent.h ", 458 "$blink_core_output_dir/css/properties/CSSPropertyAPIAlignOrJustifyContent.h ",
459 "$blink_core_output_dir/css/properties/CSSPropertyAPIAlignOrJustifySelf.h", 459 "$blink_core_output_dir/css/properties/CSSPropertyAPIAlignOrJustifySelf.h",
460 "$blink_core_output_dir/css/properties/CSSPropertyAPIAnimationName.h",
460 "$blink_core_output_dir/css/properties/CSSPropertyAPIBaselineShift.h", 461 "$blink_core_output_dir/css/properties/CSSPropertyAPIBaselineShift.h",
461 "$blink_core_output_dir/css/properties/CSSPropertyAPIBorderImageOutset.h", 462 "$blink_core_output_dir/css/properties/CSSPropertyAPIBorderImageOutset.h",
462 "$blink_core_output_dir/css/properties/CSSPropertyAPIBorderImageRepeat.h", 463 "$blink_core_output_dir/css/properties/CSSPropertyAPIBorderImageRepeat.h",
463 "$blink_core_output_dir/css/properties/CSSPropertyAPIBorderImageSlice.h", 464 "$blink_core_output_dir/css/properties/CSSPropertyAPIBorderImageSlice.h",
464 "$blink_core_output_dir/css/properties/CSSPropertyAPIBorderImageWidth.h", 465 "$blink_core_output_dir/css/properties/CSSPropertyAPIBorderImageWidth.h",
465 "$blink_core_output_dir/css/properties/CSSPropertyAPIBorderRadius.h", 466 "$blink_core_output_dir/css/properties/CSSPropertyAPIBorderRadius.h",
466 "$blink_core_output_dir/css/properties/CSSPropertyAPIBorderWidth.h", 467 "$blink_core_output_dir/css/properties/CSSPropertyAPIBorderWidth.h",
467 "$blink_core_output_dir/css/properties/CSSPropertyAPICaretColor.h", 468 "$blink_core_output_dir/css/properties/CSSPropertyAPICaretColor.h",
468 "$blink_core_output_dir/css/properties/CSSPropertyAPIClip.h", 469 "$blink_core_output_dir/css/properties/CSSPropertyAPIClip.h",
469 "$blink_core_output_dir/css/properties/CSSPropertyAPIClipPath.h", 470 "$blink_core_output_dir/css/properties/CSSPropertyAPIClipPath.h",
(...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after
1474 sources = [ 1475 sources = [
1475 "frame/csp/ContentSecurityPolicyFuzzer.cpp", 1476 "frame/csp/ContentSecurityPolicyFuzzer.cpp",
1476 ] 1477 ]
1477 deps = [ 1478 deps = [
1478 ":core", 1479 ":core",
1479 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", 1480 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support",
1480 ] 1481 ]
1481 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" 1482 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict"
1482 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" 1483 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus"
1483 } 1484 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698