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

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

Issue 2938983002: Implement parseShorthand API for shorthand properties, "overflow", "font" and "font-variant" (Closed)
Patch Set: Rebase cl 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 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 553 matching lines...) Expand 10 before | Expand all | Expand 10 after
564 "$blink_core_output_dir/css/properties/CSSPropertyAPIWebkitTextStrokeWidth.h ", 564 "$blink_core_output_dir/css/properties/CSSPropertyAPIWebkitTextStrokeWidth.h ",
565 "$blink_core_output_dir/css/properties/CSSPropertyAPIWebkitTransformOriginZ. h", 565 "$blink_core_output_dir/css/properties/CSSPropertyAPIWebkitTransformOriginZ. h",
566 "$blink_core_output_dir/css/properties/CSSPropertyAPIWidthOrHeight.h", 566 "$blink_core_output_dir/css/properties/CSSPropertyAPIWidthOrHeight.h",
567 "$blink_core_output_dir/css/properties/CSSPropertyAPIWillChange.h", 567 "$blink_core_output_dir/css/properties/CSSPropertyAPIWillChange.h",
568 "$blink_core_output_dir/css/properties/CSSPropertyAPIZIndex.h", 568 "$blink_core_output_dir/css/properties/CSSPropertyAPIZIndex.h",
569 "$blink_core_output_dir/css/properties/CSSPropertyAPIZoom.h", 569 "$blink_core_output_dir/css/properties/CSSPropertyAPIZoom.h",
570 "$blink_core_output_dir/css/properties/CSSPropertyDescriptor.cpp", 570 "$blink_core_output_dir/css/properties/CSSPropertyDescriptor.cpp",
571 "$blink_core_output_dir/css/properties/CSSPropertyDescriptor.h", 571 "$blink_core_output_dir/css/properties/CSSPropertyDescriptor.h",
572 "$blink_core_output_dir/css/properties/CSSShorthandPropertyAPIBorderRadius.h ", 572 "$blink_core_output_dir/css/properties/CSSShorthandPropertyAPIBorderRadius.h ",
573 "$blink_core_output_dir/css/properties/CSSShorthandPropertyAPIFlex.h", 573 "$blink_core_output_dir/css/properties/CSSShorthandPropertyAPIFlex.h",
574 "$blink_core_output_dir/css/properties/CSSShorthandPropertyAPIFont.h",
575 "$blink_core_output_dir/css/properties/CSSShorthandPropertyAPIFontVariant.h" ,
576 "$blink_core_output_dir/css/properties/CSSShorthandPropertyAPIOverflow.h",
574 "$blink_core_output_dir/css/properties/CSSShorthandPropertyAPITextDecoration .h", 577 "$blink_core_output_dir/css/properties/CSSShorthandPropertyAPITextDecoration .h",
575 "$blink_core_output_dir/css/properties/CSSShorthandPropertyAPIWebkitMarginCo llapse.h", 578 "$blink_core_output_dir/css/properties/CSSShorthandPropertyAPIWebkitMarginCo llapse.h",
576 ] 579 ]
577 } 580 }
578 581
579 css_properties("make_core_generated_css_property_names") { 582 css_properties("make_core_generated_css_property_names") {
580 script = "../build/scripts/make_css_property_names.py" 583 script = "../build/scripts/make_css_property_names.py"
581 outputs = [ 584 outputs = [
582 "$blink_core_output_dir/CSSPropertyNames.cpp", 585 "$blink_core_output_dir/CSSPropertyNames.cpp",
583 "$blink_core_output_dir/CSSPropertyNames.h", 586 "$blink_core_output_dir/CSSPropertyNames.h",
(...skipping 904 matching lines...) Expand 10 before | Expand all | Expand 10 after
1488 sources = [ 1491 sources = [
1489 "frame/csp/ContentSecurityPolicyFuzzer.cpp", 1492 "frame/csp/ContentSecurityPolicyFuzzer.cpp",
1490 ] 1493 ]
1491 deps = [ 1494 deps = [
1492 ":core", 1495 ":core",
1493 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", 1496 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support",
1494 ] 1497 ]
1495 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" 1498 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict"
1496 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" 1499 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus"
1497 } 1500 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/BUILD.gn » ('j') | third_party/WebKit/Source/core/css/CSSProperties.json5 » ('J')

Powered by Google App Engine
This is Rietveld 408576698