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

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

Issue 479753003: Transform XML tree viewer to blink-in-js implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | Source/core/core.gypi » ('j') | Source/core/xml/DocumentXMLTreeViewer.h » ('J')
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 # "generatePrivateScript" in make_core_generated from GYP. 929 # "generatePrivateScript" in make_core_generated from GYP.
930 # FIXME: The implementation of Blink-in-JS is not yet mature. 930 # FIXME: The implementation of Blink-in-JS is not yet mature.
931 # You can use Blink-in-JS in your local experiment, but don't ship it. 931 # You can use Blink-in-JS in your local experiment, but don't ship it.
932 # crbug.com/341031 932 # crbug.com/341031
933 action("make_core_generated_private_script") { 933 action("make_core_generated_private_script") {
934 visibility = ":make_core_generated" 934 visibility = ":make_core_generated"
935 script = "../build/scripts/make_private_script_source.py" 935 script = "../build/scripts/make_private_script_source.py"
936 936
937 inputs = [ 937 inputs = [
938 "../bindings/core/v8/PrivateScriptRunner.js", 938 "../bindings/core/v8/PrivateScriptRunner.js",
939 "../core/html/HTMLMarqueeElement.js", 939 "html/HTMLMarqueeElement.js",
940 "xml/DocumentXMLTreeViewer.js",
940 ] 941 ]
941 outputs = [ 942 outputs = [
942 "$blink_core_output_dir/PrivateScriptSources.h", 943 "$blink_core_output_dir/PrivateScriptSources.h",
943 ] 944 ]
944 945
945 args = rebase_path(outputs, root_build_dir) 946 args = rebase_path(outputs, root_build_dir)
946 args += rebase_path(inputs, root_build_dir) 947 args += rebase_path(inputs, root_build_dir)
947 948
948 deps = make_core_generated_deps 949 deps = make_core_generated_deps
949 } 950 }
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
1077 "$blink_core_output_dir/{{source_name_part}}.h", 1078 "$blink_core_output_dir/{{source_name_part}}.h",
1078 ] 1079 ]
1079 args = [ 1080 args = [
1080 "{{source}}", 1081 "{{source}}",
1081 rel_blink_core_gen_dir, 1082 rel_blink_core_gen_dir,
1082 bison_exe, 1083 bison_exe,
1083 ] 1084 ]
1084 1085
1085 deps = make_core_generated_deps 1086 deps = make_core_generated_deps
1086 } 1087 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/core.gypi » ('j') | Source/core/xml/DocumentXMLTreeViewer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698