| 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 927 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 938 # "generatePrivateScript" in make_core_generated from GYP. | 938 # "generatePrivateScript" in make_core_generated from GYP. |
| 939 # FIXME: The implementation of Blink-in-JS is not yet mature. | 939 # FIXME: The implementation of Blink-in-JS is not yet mature. |
| 940 # You can use Blink-in-JS in your local experiment, but don't ship it. | 940 # You can use Blink-in-JS in your local experiment, but don't ship it. |
| 941 # crbug.com/341031 | 941 # crbug.com/341031 |
| 942 action("make_core_generated_private_script") { | 942 action("make_core_generated_private_script") { |
| 943 visibility = ":make_core_generated" | 943 visibility = ":make_core_generated" |
| 944 script = "../build/scripts/make_private_script_source.py" | 944 script = "../build/scripts/make_private_script_source.py" |
| 945 | 945 |
| 946 inputs = [ | 946 inputs = [ |
| 947 "../bindings/core/v8/PrivateScriptRunner.js", | 947 "../bindings/core/v8/PrivateScriptRunner.js", |
| 948 "../core/html/HTMLMarqueeElement.js", |
| 948 ] | 949 ] |
| 949 outputs = [ | 950 outputs = [ |
| 950 "$blink_core_output_dir/PrivateScriptSources.h", | 951 "$blink_core_output_dir/PrivateScriptSources.h", |
| 951 ] | 952 ] |
| 952 | 953 |
| 953 args = rebase_path(outputs, root_build_dir) | 954 args = rebase_path(outputs, root_build_dir) |
| 954 args += rebase_path(inputs, root_build_dir) | 955 args += rebase_path(inputs, root_build_dir) |
| 955 | 956 |
| 956 deps = make_core_generated_deps | 957 deps = make_core_generated_deps |
| 957 } | 958 } |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1127 "$blink_core_output_dir/{{source_name_part}}.h", | 1128 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1128 ] | 1129 ] |
| 1129 args = [ | 1130 args = [ |
| 1130 "{{source}}", | 1131 "{{source}}", |
| 1131 rel_blink_core_gen_dir, | 1132 rel_blink_core_gen_dir, |
| 1132 bison_exe, | 1133 bison_exe, |
| 1133 ] | 1134 ] |
| 1134 | 1135 |
| 1135 deps = make_core_generated_deps | 1136 deps = make_core_generated_deps |
| 1136 } | 1137 } |
| OLD | NEW |