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

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

Issue 2567473002: Made a generator for CSSPropertyDescriptor.cpp (Closed)
Patch Set: fixed some formatting Created 4 years 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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 "../build/scripts/templates/ComputedStyleBase.h.tmpl", 419 "../build/scripts/templates/ComputedStyleBase.h.tmpl",
420 "../build/scripts/templates/ComputedStyleBaseConstants.h.tmpl", 420 "../build/scripts/templates/ComputedStyleBaseConstants.h.tmpl",
421 ] 421 ]
422 outputs = [ 422 outputs = [
423 "$blink_core_output_dir/ComputedStyleBase.cpp", 423 "$blink_core_output_dir/ComputedStyleBase.cpp",
424 "$blink_core_output_dir/ComputedStyleBase.h", 424 "$blink_core_output_dir/ComputedStyleBase.h",
425 "$blink_core_output_dir/ComputedStyleBaseConstants.h", 425 "$blink_core_output_dir/ComputedStyleBaseConstants.h",
426 ] 426 ]
427 } 427 }
428 428
429 css_properties("make_core_generated_css_property_descriptor") {
430 script = "../build/scripts/make_css_property_descriptor.py"
431 other_inputs = [ "../build/scripts/templates/CSSPropertyDescriptor.cpp.tmpl" ]
432 outputs = [
433 "$blink_core_output_dir/css/properties/CSSPropertyDescriptor.cpp",
434 ]
435 }
436
429 css_properties("make_core_generated_css_property_names") { 437 css_properties("make_core_generated_css_property_names") {
430 script = "../build/scripts/make_css_property_names.py" 438 script = "../build/scripts/make_css_property_names.py"
431 outputs = [ 439 outputs = [
432 "$blink_core_output_dir/CSSPropertyNames.cpp", 440 "$blink_core_output_dir/CSSPropertyNames.cpp",
433 "$blink_core_output_dir/CSSPropertyNames.h", 441 "$blink_core_output_dir/CSSPropertyNames.h",
434 ] 442 ]
435 } 443 }
436 444
437 process_in_files("make_core_generated_media_features") { 445 process_in_files("make_core_generated_media_features") {
438 script = "../build/scripts/make_media_features.py" 446 script = "../build/scripts/make_media_features.py"
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
901 } 909 }
902 910
903 # Targets from above that generate outputs that need to be compiled. 911 # Targets from above that generate outputs that need to be compiled.
904 # All sources declared as outputs from these targets will be compiled into one 912 # All sources declared as outputs from these targets will be compiled into one
905 # target. 913 # target.
906 targets_generating_sources = [ 914 targets_generating_sources = [
907 ":make_core_generated_bison", 915 ":make_core_generated_bison",
908 ":make_core_generated_css_primitive_value_unit_trie", 916 ":make_core_generated_css_primitive_value_unit_trie",
909 ":make_core_generated_css_property_metadata", 917 ":make_core_generated_css_property_metadata",
910 ":make_core_generated_computed_style_base", 918 ":make_core_generated_computed_style_base",
919 ":make_core_generated_css_property_descriptor",
911 ":make_core_generated_css_property_names", 920 ":make_core_generated_css_property_names",
912 ":make_core_generated_cssom_types", 921 ":make_core_generated_cssom_types",
913 ":make_core_generated_event_factory", 922 ":make_core_generated_event_factory",
914 ":make_core_generated_event_names", 923 ":make_core_generated_event_names",
915 ":make_core_generated_event_target_names", 924 ":make_core_generated_event_target_names",
916 ":make_core_generated_event_type_names", 925 ":make_core_generated_event_type_names",
917 ":make_core_generated_fetch_initiator_type_names", 926 ":make_core_generated_fetch_initiator_type_names",
918 ":make_core_generated_html_element_factory", 927 ":make_core_generated_html_element_factory",
919 ":make_core_generated_html_element_lookup_trie", 928 ":make_core_generated_html_element_lookup_trie",
920 ":make_core_generated_html_entity_table", 929 ":make_core_generated_html_entity_table",
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
1368 sources = [ 1377 sources = [
1369 "frame/csp/ContentSecurityPolicyFuzzer.cpp", 1378 "frame/csp/ContentSecurityPolicyFuzzer.cpp",
1370 ] 1379 ]
1371 deps = [ 1380 deps = [
1372 ":core", 1381 ":core",
1373 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", 1382 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support",
1374 ] 1383 ]
1375 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" 1384 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict"
1376 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" 1385 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus"
1377 } 1386 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698