| 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 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 900 outputs = [ | 900 outputs = [ |
| 901 "$blink_core_output_dir/XMLNames.cpp", | 901 "$blink_core_output_dir/XMLNames.cpp", |
| 902 "$blink_core_output_dir/XMLNames.h", | 902 "$blink_core_output_dir/XMLNames.h", |
| 903 ] | 903 ] |
| 904 } | 904 } |
| 905 | 905 |
| 906 # make_token_matcher ----------------------------------------------------------- | 906 # make_token_matcher ----------------------------------------------------------- |
| 907 | 907 |
| 908 # "MakeTokenMatcher" in make_core_generated from GYP. | 908 # "MakeTokenMatcher" in make_core_generated from GYP. |
| 909 make_token_matcher("make_core_generated_make_token_matcher") { | 909 make_token_matcher("make_core_generated_make_token_matcher") { |
| 910 input_file = "css/CSSTokenizer-in.cpp" | 910 input_file = "css/parser/CSSTokenizer-in.cpp" |
| 911 output_file = "$blink_core_output_dir/CSSTokenizer.cpp" | 911 output_file = "$blink_core_output_dir/CSSTokenizer.cpp" |
| 912 } | 912 } |
| 913 | 913 |
| 914 # "MakeParser" in make_core_generated from GYP. | 914 # "MakeParser" in make_core_generated from GYP. |
| 915 make_token_matcher("make_core_generated_make_parser") { | 915 make_token_matcher("make_core_generated_make_parser") { |
| 916 input_file = "css/parser/BisonCSSParser-in.cpp" | 916 input_file = "css/parser/BisonCSSParser-in.cpp" |
| 917 output_file = "$blink_core_output_dir/BisonCSSParser.cpp" | 917 output_file = "$blink_core_output_dir/BisonCSSParser.cpp" |
| 918 } | 918 } |
| 919 | 919 |
| 920 # "MakeTokenMatcherForViewport" in make_core_generated from GYP. | 920 # "MakeTokenMatcherForViewport" in make_core_generated from GYP. |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1061 "--output_dir", rel_blink_core_gen_dir, | 1061 "--output_dir", rel_blink_core_gen_dir, |
| 1062 ] | 1062 ] |
| 1063 | 1063 |
| 1064 deps = make_core_generated_deps | 1064 deps = make_core_generated_deps |
| 1065 } | 1065 } |
| 1066 | 1066 |
| 1067 # The bison rules from make_core_generated. | 1067 # The bison rules from make_core_generated. |
| 1068 action_foreach("make_core_generated_bison") { | 1068 action_foreach("make_core_generated_bison") { |
| 1069 script = "../build/scripts/rule_bison.py" | 1069 script = "../build/scripts/rule_bison.py" |
| 1070 sources = [ | 1070 sources = [ |
| 1071 "css/CSSGrammar.y", | 1071 "css/parser/CSSGrammar.y", |
| 1072 "xml/XPathGrammar.y", | 1072 "xml/XPathGrammar.y", |
| 1073 ] | 1073 ] |
| 1074 outputs = [ | 1074 outputs = [ |
| 1075 "$blink_core_output_dir/{{source_name_part}}.cpp", | 1075 "$blink_core_output_dir/{{source_name_part}}.cpp", |
| 1076 "$blink_core_output_dir/{{source_name_part}}.h", | 1076 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1077 ] | 1077 ] |
| 1078 args = [ | 1078 args = [ |
| 1079 "{{source}}", | 1079 "{{source}}", |
| 1080 rel_blink_core_gen_dir, | 1080 rel_blink_core_gen_dir, |
| 1081 bison_exe, | 1081 bison_exe, |
| 1082 ] | 1082 ] |
| 1083 | 1083 |
| 1084 deps = make_core_generated_deps | 1084 deps = make_core_generated_deps |
| 1085 } | 1085 } |
| OLD | NEW |