| 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 916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 927 # "generatePrivateScript" in make_core_generated from GYP. | 927 # "generatePrivateScript" in make_core_generated from GYP. |
| 928 # FIXME: The implementation of Blink-in-JS is not yet mature. | 928 # FIXME: The implementation of Blink-in-JS is not yet mature. |
| 929 # You can use Blink-in-JS in your local experiment, but don't ship it. | 929 # You can use Blink-in-JS in your local experiment, but don't ship it. |
| 930 # crbug.com/341031 | 930 # crbug.com/341031 |
| 931 action("make_core_generated_private_script") { | 931 action("make_core_generated_private_script") { |
| 932 visibility = ":make_core_generated" | 932 visibility = ":make_core_generated" |
| 933 script = "../build/scripts/make_private_script_source.py" | 933 script = "../build/scripts/make_private_script_source.py" |
| 934 | 934 |
| 935 inputs = [ | 935 inputs = [ |
| 936 "../bindings/core/v8/PrivateScriptRunner.js", | 936 "../bindings/core/v8/PrivateScriptRunner.js", |
| 937 "../core/dom/ProcessingInstruction.js", |
| 937 "../core/html/HTMLMarqueeElement.js", | 938 "../core/html/HTMLMarqueeElement.js", |
| 938 ] | 939 ] |
| 939 outputs = [ | 940 outputs = [ |
| 940 "$blink_core_output_dir/PrivateScriptSources.h", | 941 "$blink_core_output_dir/PrivateScriptSources.h", |
| 941 ] | 942 ] |
| 942 | 943 |
| 943 args = rebase_path(outputs, root_build_dir) | 944 args = rebase_path(outputs, root_build_dir) |
| 944 args += rebase_path(inputs, root_build_dir) | 945 args += rebase_path(inputs, root_build_dir) |
| 945 | 946 |
| 946 deps = make_core_generated_deps | 947 deps = make_core_generated_deps |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1074 "$blink_core_output_dir/{{source_name_part}}.h", | 1075 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1075 ] | 1076 ] |
| 1076 args = [ | 1077 args = [ |
| 1077 "{{source}}", | 1078 "{{source}}", |
| 1078 rel_blink_core_gen_dir, | 1079 rel_blink_core_gen_dir, |
| 1079 bison_exe, | 1080 bison_exe, |
| 1080 ] | 1081 ] |
| 1081 | 1082 |
| 1082 deps = make_core_generated_deps | 1083 deps = make_core_generated_deps |
| 1083 } | 1084 } |
| OLD | NEW |