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

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

Issue 468543002: Revert refactoring of CSSProperty .in files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//third_party/WebKit/Source/bindings/bindings.gni") 6 import("//third_party/WebKit/Source/bindings/bindings.gni")
7 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") 7 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni")
8 import("//third_party/WebKit/Source/bindings/modules/modules.gni") 8 import("//third_party/WebKit/Source/bindings/modules/modules.gni")
9 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 9 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
10 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") 10 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni")
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 # Additional .cpp files for SVG. 407 # Additional .cpp files for SVG.
408 "$blink_core_output_dir/SVGElementFactory.cpp", 408 "$blink_core_output_dir/SVGElementFactory.cpp",
409 "$blink_core_output_dir/V8SVGElementWrapperFactory.cpp", 409 "$blink_core_output_dir/V8SVGElementWrapperFactory.cpp",
410 410
411 # Generated from make_style_shorthands.py 411 # Generated from make_style_shorthands.py
412 "$blink_core_output_dir/StylePropertyShorthand.cpp", 412 "$blink_core_output_dir/StylePropertyShorthand.cpp",
413 413
414 # Generated from make_style_builder.py 414 # Generated from make_style_builder.py
415 "$blink_core_output_dir/StyleBuilder.cpp", 415 "$blink_core_output_dir/StyleBuilder.cpp",
416 "$blink_core_output_dir/StyleBuilderFunctions.cpp", 416 "$blink_core_output_dir/StyleBuilderFunctions.cpp",
417
418 # Generated from make_css_property_metadata.py
419 "$blink_core_output_dir/CSSPropertyMetadata.cpp",
420 ] 417 ]
421 418
422 configs -= core_config_remove 419 configs -= core_config_remove
423 configs += core_config_add 420 configs += core_config_add
424 421
425 configs += [ 422 configs += [
426 "..:inside_blink", 423 "..:inside_blink",
427 ] 424 ]
428 425
429 deps = [ 426 deps = [
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 ":make_core_generated_xml_names", 582 ":make_core_generated_xml_names",
586 ":make_core_generated_make_token_matcher", 583 ":make_core_generated_make_token_matcher",
587 ":make_core_generated_make_parser", 584 ":make_core_generated_make_parser",
588 ":make_core_generated_make_token_matcher_for_viewport", 585 ":make_core_generated_make_token_matcher_for_viewport",
589 ":make_core_generated_html_element_lookup_trie", 586 ":make_core_generated_html_element_lookup_trie",
590 ":make_core_generated_bison", 587 ":make_core_generated_bison",
591 ] 588 ]
592 } 589 }
593 590
594 # "CSSPropertyNames" in make_core_generated from GYP. 591 # "CSSPropertyNames" in make_core_generated from GYP.
595 css_properties("make_core_generated_css_property_names") { 592 process_in_files("make_core_generated_css_property_names") {
596 script = "../build/scripts/make_css_property_names.py" 593 script = "../build/scripts/make_css_property_names.py"
594 in_files = [
595 "css/CSSPropertyNames.in",
596 "css/SVGCSSPropertyNames.in",
597 ]
597 outputs = [ 598 outputs = [
598 "$blink_core_output_dir/CSSPropertyNames.cpp", 599 "$blink_core_output_dir/CSSPropertyNames.cpp",
599 "$blink_core_output_dir/CSSPropertyNames.h", 600 "$blink_core_output_dir/CSSPropertyNames.h",
600 ] 601 ]
601 } 602 }
602 603
603 # "MediaFeatures" in make_core_generated from GYP. 604 # "MediaFeatures" in make_core_generated from GYP.
604 process_in_files("make_core_generated_media_features") { 605 process_in_files("make_core_generated_media_features") {
605 script = "../build/scripts/make_media_features.py" 606 script = "../build/scripts/make_media_features.py"
606 in_files = [ 607 in_files = [
(...skipping 29 matching lines...) Expand all
636 "../build/scripts/templates/StyleBuilderFunctions.cpp.tmpl", 637 "../build/scripts/templates/StyleBuilderFunctions.cpp.tmpl",
637 "../build/scripts/templates/StyleBuilderFunctions.h.tmpl", 638 "../build/scripts/templates/StyleBuilderFunctions.h.tmpl",
638 ] 639 ]
639 outputs = [ 640 outputs = [
640 "$blink_core_output_dir/StyleBuilder.cpp", 641 "$blink_core_output_dir/StyleBuilder.cpp",
641 "$blink_core_output_dir/StyleBuilderFunctions.h", 642 "$blink_core_output_dir/StyleBuilderFunctions.h",
642 "$blink_core_output_dir/StyleBuilderFunctions.cpp", 643 "$blink_core_output_dir/StyleBuilderFunctions.cpp",
643 ] 644 ]
644 } 645 }
645 646
646 # "CSSPropertyMetadata" in make_core_generated from GYP.
647 css_properties("make_core_generated_css_property_metadata") {
648 script = "../build/scripts/make_css_property_metadata.py"
649 other_inputs = [
650 "../build/scripts/templates/CSSPropertyMetadata.cpp.tmpl",
651 ]
652 outputs = [
653 "$blink_core_output_dir/CSSPropertyMetadata.cpp",
654 ]
655 }
656
657 # "CSSValueKeywords" in make_core_generated from GYP. 647 # "CSSValueKeywords" in make_core_generated from GYP.
658 process_in_files("make_core_generated_css_value_keywords") { 648 process_in_files("make_core_generated_css_value_keywords") {
659 script = "../build/scripts/make_css_value_keywords.py" 649 script = "../build/scripts/make_css_value_keywords.py"
660 650
661 in_files = [ 651 in_files = [
662 "css/CSSValueKeywords.in", 652 "css/CSSValueKeywords.in",
663 "css/SVGCSSValueKeywords.in", 653 "css/SVGCSSValueKeywords.in",
664 ] 654 ]
665 outputs = [ 655 outputs = [
666 "$blink_core_output_dir/CSSValueKeywords.cpp", 656 "$blink_core_output_dir/CSSValueKeywords.cpp",
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
1076 "$blink_core_output_dir/{{source_name_part}}.h", 1066 "$blink_core_output_dir/{{source_name_part}}.h",
1077 ] 1067 ]
1078 args = [ 1068 args = [
1079 "{{source}}", 1069 "{{source}}",
1080 rel_blink_core_gen_dir, 1070 rel_blink_core_gen_dir,
1081 bison_exe, 1071 bison_exe,
1082 ] 1072 ]
1083 1073
1084 deps = make_core_generated_deps 1074 deps = make_core_generated_deps
1085 } 1075 }
OLDNEW
« no previous file with comments | « Source/build/scripts/templates/CSSPropertyMetadata.cpp.tmpl ('k') | Source/core/animation/StringKeyframe.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698