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

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

Issue 365873002: Implement a part of ProcessingInstruction by using PrivateScript (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: WIP: async XHR, rewriting layout tests Created 6 years, 3 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 | « LayoutTests/platform/win/fast/xsl/document-function-expected.txt ('k') | Source/core/core.gypi » ('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 923 matching lines...) Expand 10 before | Expand all | Expand 10 after
934 # "generatePrivateScript" in make_core_generated from GYP. 934 # "generatePrivateScript" in make_core_generated from GYP.
935 # FIXME: The implementation of Blink-in-JS is not yet mature. 935 # FIXME: The implementation of Blink-in-JS is not yet mature.
936 # You can use Blink-in-JS in your local experiment, but don't ship it. 936 # You can use Blink-in-JS in your local experiment, but don't ship it.
937 # crbug.com/341031 937 # crbug.com/341031
938 action("make_core_generated_private_script") { 938 action("make_core_generated_private_script") {
939 visibility = ":make_core_generated" 939 visibility = ":make_core_generated"
940 script = "../build/scripts/make_private_script_source.py" 940 script = "../build/scripts/make_private_script_source.py"
941 941
942 inputs = [ 942 inputs = [
943 "../bindings/core/v8/PrivateScriptRunner.js", 943 "../bindings/core/v8/PrivateScriptRunner.js",
944 "dom/ProcessingInstruction.js",
944 "html/HTMLMarqueeElement.js", 945 "html/HTMLMarqueeElement.js",
945 "xml/DocumentXMLTreeViewer.js", 946 "xml/DocumentXMLTreeViewer.js",
947 "xml/DocumentXSLT.js",
946 ] 948 ]
947 outputs = [ 949 outputs = [
948 "$blink_core_output_dir/PrivateScriptSources.h", 950 "$blink_core_output_dir/PrivateScriptSources.h",
949 ] 951 ]
950 952
951 args = rebase_path(outputs, root_build_dir) 953 args = rebase_path(outputs, root_build_dir)
952 args += rebase_path(inputs, root_build_dir) 954 args += rebase_path(inputs, root_build_dir)
953 955
954 deps = make_core_generated_deps 956 deps = make_core_generated_deps
955 } 957 }
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
1083 "$blink_core_output_dir/{{source_name_part}}.h", 1085 "$blink_core_output_dir/{{source_name_part}}.h",
1084 ] 1086 ]
1085 args = [ 1087 args = [
1086 "{{source}}", 1088 "{{source}}",
1087 rel_blink_core_gen_dir, 1089 rel_blink_core_gen_dir,
1088 bison_exe, 1090 bison_exe,
1089 ] 1091 ]
1090 1092
1091 deps = make_core_generated_deps 1093 deps = make_core_generated_deps
1092 } 1094 }
OLDNEW
« no previous file with comments | « LayoutTests/platform/win/fast/xsl/document-function-expected.txt ('k') | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698