| OLD | NEW |
| 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 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 591 ":make_core_generated_xml_names", | 591 ":make_core_generated_xml_names", |
| 592 ":make_core_generated_make_token_matcher", | 592 ":make_core_generated_make_token_matcher", |
| 593 ":make_core_generated_make_parser", | 593 ":make_core_generated_make_parser", |
| 594 ":make_core_generated_make_token_matcher_for_viewport", | 594 ":make_core_generated_make_token_matcher_for_viewport", |
| 595 ":make_core_generated_html_element_lookup_trie", | 595 ":make_core_generated_html_element_lookup_trie", |
| 596 ":make_core_generated_bison", | 596 ":make_core_generated_bison", |
| 597 ] | 597 ] |
| 598 } | 598 } |
| 599 | 599 |
| 600 # "CSSPropertyNames" in make_core_generated from GYP. | 600 # "CSSPropertyNames" in make_core_generated from GYP. |
| 601 process_in_files("make_core_generated_css_property_names") { | 601 css_properties("make_core_generated_css_property_names") { |
| 602 script = "../build/scripts/make_css_property_names.py" | 602 script = "../build/scripts/make_css_property_names.py" |
| 603 in_files = [ | |
| 604 "css/CSSPropertyNames.in", | |
| 605 "css/SVGCSSPropertyNames.in", | |
| 606 ] | |
| 607 outputs = [ | 603 outputs = [ |
| 608 "$blink_core_output_dir/CSSPropertyNames.cpp", | 604 "$blink_core_output_dir/CSSPropertyNames.cpp", |
| 609 "$blink_core_output_dir/CSSPropertyNames.h", | 605 "$blink_core_output_dir/CSSPropertyNames.h", |
| 610 ] | 606 ] |
| 611 } | 607 } |
| 612 | 608 |
| 613 # "MediaFeatures" in make_core_generated from GYP. | 609 # "MediaFeatures" in make_core_generated from GYP. |
| 614 process_in_files("make_core_generated_media_features") { | 610 process_in_files("make_core_generated_media_features") { |
| 615 script = "../build/scripts/make_media_features.py" | 611 script = "../build/scripts/make_media_features.py" |
| 616 in_files = [ | 612 in_files = [ |
| 617 "css/MediaFeatureNames.in", | 613 "css/MediaFeatureNames.in", |
| 618 ] | 614 ] |
| 619 other_inputs = [ | 615 other_inputs = [ |
| 620 "../build/scripts/make_media_features.py", | 616 "../build/scripts/make_media_features.py", |
| 621 "../build/scripts/templates/MediaFeatures.h.tmpl", | 617 "../build/scripts/templates/MediaFeatures.h.tmpl", |
| 622 ] | 618 ] |
| 623 outputs = [ | 619 outputs = [ |
| 624 "$blink_core_output_dir/MediaFeatures.h", | 620 "$blink_core_output_dir/MediaFeatures.h", |
| 625 ] | 621 ] |
| 626 } | 622 } |
| 627 | 623 |
| 628 # "StylePropertyShorthand" in make_core_generated from GYP. | 624 # "StylePropertyShorthand" in make_core_generated from GYP. |
| 629 process_in_files("make_core_generated_style_property_shorthand") { | 625 css_properties("make_core_generated_style_property_shorthand") { |
| 630 script = "../build/scripts/make_style_shorthands.py" | 626 script = "../build/scripts/make_style_shorthands.py" |
| 631 in_files = [ | |
| 632 "css/CSSShorthands.in", | |
| 633 ] | |
| 634 other_inputs = [ | 627 other_inputs = [ |
| 635 "../build/scripts/templates/StylePropertyShorthand.cpp.tmpl", | 628 "../build/scripts/templates/StylePropertyShorthand.cpp.tmpl", |
| 636 "../build/scripts/templates/StylePropertyShorthand.h.tmpl", | 629 "../build/scripts/templates/StylePropertyShorthand.h.tmpl", |
| 637 ] | 630 ] |
| 638 outputs = [ | 631 outputs = [ |
| 639 "$blink_core_output_dir/StylePropertyShorthand.cpp", | 632 "$blink_core_output_dir/StylePropertyShorthand.cpp", |
| 640 "$blink_core_output_dir/StylePropertyShorthand.h", | 633 "$blink_core_output_dir/StylePropertyShorthand.h", |
| 641 ] | 634 ] |
| 642 } | 635 } |
| 643 | 636 |
| 644 # "StyleBuilder" in make_core_generated from GYP. | 637 # "StyleBuilder" in make_core_generated from GYP. |
| 645 process_in_files("make_core_generated_style_builder") { | 638 css_properties("make_core_generated_style_builder") { |
| 646 script = "../build/scripts/make_style_builder.py" | 639 script = "../build/scripts/make_style_builder.py" |
| 647 | |
| 648 in_files = [ | |
| 649 "css/CSSProperties.in", | |
| 650 ] | |
| 651 other_inputs = [ | 640 other_inputs = [ |
| 652 "../build/scripts/templates/StyleBuilder.cpp.tmpl", | 641 "../build/scripts/templates/StyleBuilder.cpp.tmpl", |
| 653 "../build/scripts/templates/StyleBuilderFunctions.cpp.tmpl", | 642 "../build/scripts/templates/StyleBuilderFunctions.cpp.tmpl", |
| 654 "../build/scripts/templates/StyleBuilderFunctions.h.tmpl", | 643 "../build/scripts/templates/StyleBuilderFunctions.h.tmpl", |
| 655 ] | 644 ] |
| 656 outputs = [ | 645 outputs = [ |
| 657 "$blink_core_output_dir/StyleBuilder.cpp", | 646 "$blink_core_output_dir/StyleBuilder.cpp", |
| 658 "$blink_core_output_dir/StyleBuilderFunctions.h", | 647 "$blink_core_output_dir/StyleBuilderFunctions.h", |
| 659 "$blink_core_output_dir/StyleBuilderFunctions.cpp", | 648 "$blink_core_output_dir/StyleBuilderFunctions.cpp", |
| 660 ] | 649 ] |
| (...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1081 "$blink_core_output_dir/{{source_name_part}}.h", | 1070 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1082 ] | 1071 ] |
| 1083 args = [ | 1072 args = [ |
| 1084 "{{source}}", | 1073 "{{source}}", |
| 1085 rel_blink_core_gen_dir, | 1074 rel_blink_core_gen_dir, |
| 1086 bison_exe, | 1075 bison_exe, |
| 1087 ] | 1076 ] |
| 1088 | 1077 |
| 1089 deps = make_core_generated_deps | 1078 deps = make_core_generated_deps |
| 1090 } | 1079 } |
| OLD | NEW |