| 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 943 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 954 args += rebase_path(source_prereqs, root_build_dir) | 954 args += rebase_path(source_prereqs, root_build_dir) |
| 955 | 955 |
| 956 deps = make_core_generated_deps | 956 deps = make_core_generated_deps |
| 957 } | 957 } |
| 958 | 958 |
| 959 action("make_core_generated_private_script_for_testing") { | 959 action("make_core_generated_private_script_for_testing") { |
| 960 visibility = ":make_core_generated" | 960 visibility = ":make_core_generated" |
| 961 script = "../build/scripts/make_private_script_source.py" | 961 script = "../build/scripts/make_private_script_source.py" |
| 962 | 962 |
| 963 source_prereqs = [ | 963 source_prereqs = [ |
| 964 "testing/Internals.js", | 964 "testing/PrivateScriptTest.js", |
| 965 ] | 965 ] |
| 966 outputs = [ | 966 outputs = [ |
| 967 "$blink_core_output_dir/PrivateScriptSourcesForTesting.h", | 967 "$blink_core_output_dir/PrivateScriptSourcesForTesting.h", |
| 968 ] | 968 ] |
| 969 | 969 |
| 970 args = rebase_path(outputs, root_build_dir) | 970 args = rebase_path(outputs, root_build_dir) |
| 971 args += rebase_path(source_prereqs, root_build_dir) | 971 args += rebase_path(source_prereqs, root_build_dir) |
| 972 | 972 |
| 973 deps = make_core_generated_deps | 973 deps = make_core_generated_deps |
| 974 } | 974 } |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1127 "$blink_core_output_dir/{{source_name_part}}.h", | 1127 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1128 ] | 1128 ] |
| 1129 args = [ | 1129 args = [ |
| 1130 "{{source}}", | 1130 "{{source}}", |
| 1131 rel_blink_core_gen_dir, | 1131 rel_blink_core_gen_dir, |
| 1132 bison_exe, | 1132 bison_exe, |
| 1133 ] | 1133 ] |
| 1134 | 1134 |
| 1135 deps = make_core_generated_deps | 1135 deps = make_core_generated_deps |
| 1136 } | 1136 } |
| OLD | NEW |