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

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

Issue 2578773002: Made a generator for .h files for implementations of CSSPropertyAPI.h (Closed)
Patch Set: 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 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 "../build/scripts/templates/ComputedStyleBase.h.tmpl", 417 "../build/scripts/templates/ComputedStyleBase.h.tmpl",
418 "../build/scripts/templates/ComputedStyleBaseConstants.h.tmpl", 418 "../build/scripts/templates/ComputedStyleBaseConstants.h.tmpl",
419 ] 419 ]
420 outputs = [ 420 outputs = [
421 "$blink_core_output_dir/ComputedStyleBase.cpp", 421 "$blink_core_output_dir/ComputedStyleBase.cpp",
422 "$blink_core_output_dir/ComputedStyleBase.h", 422 "$blink_core_output_dir/ComputedStyleBase.h",
423 "$blink_core_output_dir/ComputedStyleBaseConstants.h", 423 "$blink_core_output_dir/ComputedStyleBaseConstants.h",
424 ] 424 ]
425 } 425 }
426 426
427 css_properties("make_core_generated_css_property_descriptor") { 427 css_properties("make_core_generated_css_property_api") {
428 script = "../build/scripts/make_css_property_descriptor.py" 428 script = "../build/scripts/make_css_property_api.py"
429 other_inputs = [ "../build/scripts/templates/CSSPropertyDescriptor.cpp.tmpl" ] 429 other_inputs = [
430 "../build/scripts/templates/CSSPropertyDescriptor.cpp.tmpl",
431 "../build/scripts/templates/CSSPropertyAPI.h.tmpl",
432 ]
430 outputs = [ 433 outputs = [
431 "$blink_core_output_dir/css/properties/CSSPropertyDescriptor.cpp", 434 "$blink_core_output_dir/css/properties/CSSPropertyDescriptor.cpp",
435 "$blink_core_output_dir/css/properties/CSSPropertyAPI*.h",
432 ] 436 ]
433 } 437 }
434 438
435 css_properties("make_core_generated_css_property_names") { 439 css_properties("make_core_generated_css_property_names") {
436 script = "../build/scripts/make_css_property_names.py" 440 script = "../build/scripts/make_css_property_names.py"
437 outputs = [ 441 outputs = [
438 "$blink_core_output_dir/CSSPropertyNames.cpp", 442 "$blink_core_output_dir/CSSPropertyNames.cpp",
439 "$blink_core_output_dir/CSSPropertyNames.h", 443 "$blink_core_output_dir/CSSPropertyNames.h",
440 ] 444 ]
441 } 445 }
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
866 } 870 }
867 871
868 # Targets from above that generate outputs that need to be compiled. 872 # Targets from above that generate outputs that need to be compiled.
869 # All sources declared as outputs from these targets will be compiled into one 873 # All sources declared as outputs from these targets will be compiled into one
870 # target. 874 # target.
871 targets_generating_sources = [ 875 targets_generating_sources = [
872 ":make_core_generated_bison", 876 ":make_core_generated_bison",
873 ":make_core_generated_css_primitive_value_unit_trie", 877 ":make_core_generated_css_primitive_value_unit_trie",
874 ":make_core_generated_css_property_metadata", 878 ":make_core_generated_css_property_metadata",
875 ":make_core_generated_computed_style_base", 879 ":make_core_generated_computed_style_base",
876 ":make_core_generated_css_property_descriptor", 880 ":make_core_generated_css_property_api",
877 ":make_core_generated_css_property_names", 881 ":make_core_generated_css_property_names",
878 ":make_core_generated_cssom_types", 882 ":make_core_generated_cssom_types",
879 ":make_core_generated_event_factory", 883 ":make_core_generated_event_factory",
880 ":make_core_generated_event_names", 884 ":make_core_generated_event_names",
881 ":make_core_generated_event_target_names", 885 ":make_core_generated_event_target_names",
882 ":make_core_generated_event_type_names", 886 ":make_core_generated_event_type_names",
883 ":make_core_generated_fetch_initiator_type_names", 887 ":make_core_generated_fetch_initiator_type_names",
884 ":make_core_generated_html_element_factory", 888 ":make_core_generated_html_element_factory",
885 ":make_core_generated_html_element_lookup_trie", 889 ":make_core_generated_html_element_lookup_trie",
886 ":make_core_generated_html_entity_table", 890 ":make_core_generated_html_entity_table",
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after
1330 sources = [ 1334 sources = [
1331 "frame/csp/ContentSecurityPolicyFuzzer.cpp", 1335 "frame/csp/ContentSecurityPolicyFuzzer.cpp",
1332 ] 1336 ]
1333 deps = [ 1337 deps = [
1334 ":core", 1338 ":core",
1335 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", 1339 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support",
1336 ] 1340 ]
1337 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" 1341 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict"
1338 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" 1342 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus"
1339 } 1343 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698