| 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 901 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 912 # FIXME: The implementation of Blink-in-JS is not yet mature. | 912 # FIXME: The implementation of Blink-in-JS is not yet mature. |
| 913 # You can use Blink-in-JS in your local experiment, but don't ship it. | 913 # You can use Blink-in-JS in your local experiment, but don't ship it. |
| 914 # crbug.com/341031 | 914 # crbug.com/341031 |
| 915 action("make_core_generated_private_script") { | 915 action("make_core_generated_private_script") { |
| 916 visibility = [] # Allow re-assignment of list. | 916 visibility = [] # Allow re-assignment of list. |
| 917 visibility = [ ":make_core_generated" ] | 917 visibility = [ ":make_core_generated" ] |
| 918 script = "../build/scripts/make_private_script_source.py" | 918 script = "../build/scripts/make_private_script_source.py" |
| 919 | 919 |
| 920 inputs = [ | 920 inputs = [ |
| 921 "../bindings/core/v8/PrivateScriptRunner.js", | 921 "../bindings/core/v8/PrivateScriptRunner.js", |
| 922 "dom/ProcessingInstruction.js", |
| 922 "html/HTMLMarqueeElement.js", | 923 "html/HTMLMarqueeElement.js", |
| 923 "html/shadow/PluginPlaceholderElement.js", | 924 "html/shadow/PluginPlaceholderElement.js", |
| 924 "xml/DocumentXMLTreeViewer.js", | 925 "xml/DocumentXMLTreeViewer.js", |
| 926 "xml/DocumentXSLT.js", |
| 925 ] | 927 ] |
| 926 outputs = [ | 928 outputs = [ |
| 927 "$blink_core_output_dir/PrivateScriptSources.h", | 929 "$blink_core_output_dir/PrivateScriptSources.h", |
| 928 ] | 930 ] |
| 929 | 931 |
| 930 args = rebase_path(outputs, root_build_dir) | 932 args = rebase_path(outputs, root_build_dir) |
| 931 args += rebase_path(inputs, root_build_dir) | 933 args += rebase_path(inputs, root_build_dir) |
| 932 | 934 |
| 933 deps = make_core_generated_deps | 935 deps = make_core_generated_deps |
| 934 } | 936 } |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1068 "$blink_core_output_dir/{{source_name_part}}.h", | 1070 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1069 ] | 1071 ] |
| 1070 args = [ | 1072 args = [ |
| 1071 "{{source}}", | 1073 "{{source}}", |
| 1072 rel_blink_core_gen_dir, | 1074 rel_blink_core_gen_dir, |
| 1073 bison_exe, | 1075 bison_exe, |
| 1074 ] | 1076 ] |
| 1075 | 1077 |
| 1076 deps = make_core_generated_deps | 1078 deps = make_core_generated_deps |
| 1077 } | 1079 } |
| OLD | NEW |