| 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 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 942 args += rebase_path(inputs, root_build_dir) | 942 args += rebase_path(inputs, root_build_dir) |
| 943 | 943 |
| 944 deps = make_core_generated_deps | 944 deps = make_core_generated_deps |
| 945 } | 945 } |
| 946 | 946 |
| 947 action("make_core_generated_private_script_for_testing") { | 947 action("make_core_generated_private_script_for_testing") { |
| 948 visibility = ":make_core_generated" | 948 visibility = ":make_core_generated" |
| 949 script = "../build/scripts/make_private_script_source.py" | 949 script = "../build/scripts/make_private_script_source.py" |
| 950 | 950 |
| 951 inputs = [ | 951 inputs = [ |
| 952 "testing/PrivateScriptTest.js", | 952 "testing/PartialPrivateScriptTest.js", |
| 953 "testing/PrivateScriptTest.js", |
| 953 ] | 954 ] |
| 954 outputs = [ | 955 outputs = [ |
| 955 "$blink_core_output_dir/PrivateScriptSourcesForTesting.h", | 956 "$blink_core_output_dir/PrivateScriptSourcesForTesting.h", |
| 956 ] | 957 ] |
| 957 | 958 |
| 958 args = rebase_path(outputs, root_build_dir) | 959 args = rebase_path(outputs, root_build_dir) |
| 959 args += rebase_path(inputs, root_build_dir) | 960 args += rebase_path(inputs, root_build_dir) |
| 960 | 961 |
| 961 deps = make_core_generated_deps | 962 deps = make_core_generated_deps |
| 962 } | 963 } |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1072 "$blink_core_output_dir/{{source_name_part}}.h", | 1073 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1073 ] | 1074 ] |
| 1074 args = [ | 1075 args = [ |
| 1075 "{{source}}", | 1076 "{{source}}", |
| 1076 rel_blink_core_gen_dir, | 1077 rel_blink_core_gen_dir, |
| 1077 bison_exe, | 1078 bison_exe, |
| 1078 ] | 1079 ] |
| 1079 | 1080 |
| 1080 deps = make_core_generated_deps | 1081 deps = make_core_generated_deps |
| 1081 } | 1082 } |
| OLD | NEW |