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 919 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
930 | 930 |
931 # "MakeTokenMatcherForViewport" in make_core_generated from GYP. | 931 # "MakeTokenMatcherForViewport" in make_core_generated from GYP. |
932 make_token_matcher("make_core_generated_make_token_matcher_for_viewport") { | 932 make_token_matcher("make_core_generated_make_token_matcher_for_viewport") { |
933 input_file = "html/HTMLMetaElement-in.cpp" | 933 input_file = "html/HTMLMetaElement-in.cpp" |
934 output_file = "$blink_core_output_dir/HTMLMetaElement.cpp" | 934 output_file = "$blink_core_output_dir/HTMLMetaElement.cpp" |
935 } | 935 } |
936 | 936 |
937 # One-off scripts -------------------------------------------------------------- | 937 # One-off scripts -------------------------------------------------------------- |
938 | 938 |
939 # "generatePrivateScript" in make_core_generated from GYP. | 939 # "generatePrivateScript" in make_core_generated from GYP. |
| 940 # FIXME: The implementation of Blink-in-JS is not yet mature. |
| 941 # You can use Blink-in-JS in your local experiment, but don't ship it. |
| 942 # crbug.com/341031 |
940 action("make_core_generated_private_script") { | 943 action("make_core_generated_private_script") { |
941 visibility = ":make_core_generated" | 944 visibility = ":make_core_generated" |
942 script = "../build/scripts/make_private_script_source.py" | 945 script = "../build/scripts/make_private_script_source.py" |
943 | 946 |
944 source_prereqs = [ | 947 source_prereqs = [ |
945 "../bindings/v8/PrivateScriptRunner.js", | 948 "../bindings/v8/PrivateScriptRunner.js", |
946 ] | 949 ] |
947 outputs = [ | 950 outputs = [ |
948 "$blink_core_output_dir/PrivateScriptSources.h", | 951 "$blink_core_output_dir/PrivateScriptSources.h", |
949 ] | 952 ] |
950 | 953 |
951 args = rebase_path(outputs, root_build_dir) | 954 args = rebase_path(outputs, root_build_dir) |
952 args += rebase_path(source_prereqs, root_build_dir) | 955 args += rebase_path(source_prereqs, root_build_dir) |
953 | 956 |
954 deps = make_core_generated_deps | 957 deps = make_core_generated_deps |
955 } | 958 } |
956 | 959 |
| 960 action("make_core_generated_private_script_for_testing") { |
| 961 visibility = ":make_core_generated" |
| 962 script = "../build/scripts/make_private_script_source.py" |
| 963 |
| 964 source_prereqs = [ |
| 965 "testing/Internals.js", |
| 966 ] |
| 967 outputs = [ |
| 968 "$blink_core_output_dir/PrivateScriptSourcesForTesting.h", |
| 969 ] |
| 970 |
| 971 args = rebase_path(outputs, root_build_dir) |
| 972 args += rebase_path(source_prereqs, root_build_dir) |
| 973 |
| 974 deps = make_core_generated_deps |
| 975 } |
| 976 |
957 # "generateXMLViewerCSS" in make_core_generated from GYP. | 977 # "generateXMLViewerCSS" in make_core_generated from GYP. |
958 action("make_core_generated_xml_viewer_css") { | 978 action("make_core_generated_xml_viewer_css") { |
959 visibility = ":make_core_generated" | 979 visibility = ":make_core_generated" |
960 script = "../build/scripts/xxd.py" | 980 script = "../build/scripts/xxd.py" |
961 | 981 |
962 source_prereqs = [ | 982 source_prereqs = [ |
963 "xml/XMLViewer.css", | 983 "xml/XMLViewer.css", |
964 ] | 984 ] |
965 outputs = [ | 985 outputs = [ |
966 "$blink_core_output_dir/XMLViewerCSS.h", | 986 "$blink_core_output_dir/XMLViewerCSS.h", |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1115 "$blink_core_output_dir/{{source_name_part}}.h", | 1135 "$blink_core_output_dir/{{source_name_part}}.h", |
1116 ] | 1136 ] |
1117 args = [ | 1137 args = [ |
1118 "{{source}}", | 1138 "{{source}}", |
1119 rel_blink_core_gen_dir, | 1139 rel_blink_core_gen_dir, |
1120 bison_exe, | 1140 bison_exe, |
1121 ] | 1141 ] |
1122 | 1142 |
1123 deps = make_core_generated_deps | 1143 deps = make_core_generated_deps |
1124 } | 1144 } |
OLD | NEW |