| 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 899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 910 # You can use Blink-in-JS in your local experiment, but don't ship it. | 910 # You can use Blink-in-JS in your local experiment, but don't ship it. |
| 911 # crbug.com/341031 | 911 # crbug.com/341031 |
| 912 action("make_core_generated_private_script") { | 912 action("make_core_generated_private_script") { |
| 913 visibility = [] # Allow re-assignment of list. | 913 visibility = [] # Allow re-assignment of list. |
| 914 visibility = [ ":make_core_generated" ] | 914 visibility = [ ":make_core_generated" ] |
| 915 script = "../build/scripts/make_private_script_source.py" | 915 script = "../build/scripts/make_private_script_source.py" |
| 916 | 916 |
| 917 inputs = [ | 917 inputs = [ |
| 918 "../bindings/core/v8/PrivateScriptRunner.js", | 918 "../bindings/core/v8/PrivateScriptRunner.js", |
| 919 "html/HTMLMarqueeElement.js", | 919 "html/HTMLMarqueeElement.js", |
| 920 "html/shadow/PluginPlaceholderElement.js", |
| 920 "xml/DocumentXMLTreeViewer.js", | 921 "xml/DocumentXMLTreeViewer.js", |
| 921 ] | 922 ] |
| 922 outputs = [ | 923 outputs = [ |
| 923 "$blink_core_output_dir/PrivateScriptSources.h", | 924 "$blink_core_output_dir/PrivateScriptSources.h", |
| 924 ] | 925 ] |
| 925 | 926 |
| 926 args = rebase_path(outputs, root_build_dir) | 927 args = rebase_path(outputs, root_build_dir) |
| 927 args += rebase_path(inputs, root_build_dir) | 928 args += rebase_path(inputs, root_build_dir) |
| 928 | 929 |
| 929 deps = make_core_generated_deps | 930 deps = make_core_generated_deps |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1064 "$blink_core_output_dir/{{source_name_part}}.h", | 1065 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1065 ] | 1066 ] |
| 1066 args = [ | 1067 args = [ |
| 1067 "{{source}}", | 1068 "{{source}}", |
| 1068 rel_blink_core_gen_dir, | 1069 rel_blink_core_gen_dir, |
| 1069 bison_exe, | 1070 bison_exe, |
| 1070 ] | 1071 ] |
| 1071 | 1072 |
| 1072 deps = make_core_generated_deps | 1073 deps = make_core_generated_deps |
| 1073 } | 1074 } |
| OLD | NEW |