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

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

Issue 360703003: Implement Blink-in-JS for DOM methods (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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
« no previous file with comments | « Source/build/scripts/make_private_script_source.py ('k') | Source/core/core_generated.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 918 matching lines...) Expand 10 before | Expand all | Expand 10 after
929 929
930 # "MakeTokenMatcherForViewport" in make_core_generated from GYP. 930 # "MakeTokenMatcherForViewport" in make_core_generated from GYP.
931 make_token_matcher("make_core_generated_make_token_matcher_for_viewport") { 931 make_token_matcher("make_core_generated_make_token_matcher_for_viewport") {
932 input_file = "html/HTMLMetaElement-in.cpp" 932 input_file = "html/HTMLMetaElement-in.cpp"
933 output_file = "$blink_core_output_dir/HTMLMetaElement.cpp" 933 output_file = "$blink_core_output_dir/HTMLMetaElement.cpp"
934 } 934 }
935 935
936 # One-off scripts -------------------------------------------------------------- 936 # One-off scripts --------------------------------------------------------------
937 937
938 # "generatePrivateScript" in make_core_generated from GYP. 938 # "generatePrivateScript" in make_core_generated from GYP.
939 # FIXME: The implementation of Blink-in-JS is not yet mature.
940 # You can use Blink-in-JS in your local experiment, but don't ship it.
941 # crbug.com/341031
939 action("make_core_generated_private_script") { 942 action("make_core_generated_private_script") {
940 visibility = ":make_core_generated" 943 visibility = ":make_core_generated"
941 script = "../build/scripts/make_private_script_source.py" 944 script = "../build/scripts/make_private_script_source.py"
942 945
943 source_prereqs = [ 946 source_prereqs = [
944 "../bindings/core/v8/PrivateScriptRunner.js", 947 "../bindings/core/v8/PrivateScriptRunner.js",
945 ] 948 ]
946 outputs = [ 949 outputs = [
947 "$blink_core_output_dir/PrivateScriptSources.h", 950 "$blink_core_output_dir/PrivateScriptSources.h",
948 ] 951 ]
949 952
950 args = rebase_path(outputs, root_build_dir) 953 args = rebase_path(outputs, root_build_dir)
951 args += rebase_path(source_prereqs, root_build_dir) 954 args += rebase_path(source_prereqs, root_build_dir)
952 955
953 deps = make_core_generated_deps 956 deps = make_core_generated_deps
954 } 957 }
955 958
959 action("make_core_generated_private_script_for_testing") {
960 visibility = ":make_core_generated"
961 script = "../build/scripts/make_private_script_source.py"
962
963 source_prereqs = [
964 "testing/Internals.js",
965 ]
966 outputs = [
967 "$blink_core_output_dir/PrivateScriptSourcesForTesting.h",
968 ]
969
970 args = rebase_path(outputs, root_build_dir)
971 args += rebase_path(source_prereqs, root_build_dir)
972
973 deps = make_core_generated_deps
974 }
975
956 # "generateXMLViewerCSS" in make_core_generated from GYP. 976 # "generateXMLViewerCSS" in make_core_generated from GYP.
957 action("make_core_generated_xml_viewer_css") { 977 action("make_core_generated_xml_viewer_css") {
958 visibility = ":make_core_generated" 978 visibility = ":make_core_generated"
959 script = "../build/scripts/xxd.py" 979 script = "../build/scripts/xxd.py"
960 980
961 source_prereqs = [ 981 source_prereqs = [
962 "xml/XMLViewer.css", 982 "xml/XMLViewer.css",
963 ] 983 ]
964 outputs = [ 984 outputs = [
965 "$blink_core_output_dir/XMLViewerCSS.h", 985 "$blink_core_output_dir/XMLViewerCSS.h",
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
1107 "$blink_core_output_dir/{{source_name_part}}.h", 1127 "$blink_core_output_dir/{{source_name_part}}.h",
1108 ] 1128 ]
1109 args = [ 1129 args = [
1110 "{{source}}", 1130 "{{source}}",
1111 rel_blink_core_gen_dir, 1131 rel_blink_core_gen_dir,
1112 bison_exe, 1132 bison_exe,
1113 ] 1133 ]
1114 1134
1115 deps = make_core_generated_deps 1135 deps = make_core_generated_deps
1116 } 1136 }
OLDNEW
« no previous file with comments | « Source/build/scripts/make_private_script_source.py ('k') | Source/core/core_generated.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698