| 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 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 935 script = "../build/scripts/make_private_script_source.py" | 935 script = "../build/scripts/make_private_script_source.py" |
| 936 | 936 |
| 937 inputs = [ | 937 inputs = [ |
| 938 "testing/PartialPrivateScriptTest.js", | 938 "testing/PartialPrivateScriptTest.js", |
| 939 "testing/PrivateScriptTest.js", | 939 "testing/PrivateScriptTest.js", |
| 940 ] | 940 ] |
| 941 outputs = [ | 941 outputs = [ |
| 942 "$blink_core_output_dir/PrivateScriptSourcesForTesting.h", | 942 "$blink_core_output_dir/PrivateScriptSourcesForTesting.h", |
| 943 ] | 943 ] |
| 944 | 944 |
| 945 args = rebase_path(outputs, root_build_dir) | 945 args = [ "--for-testing" ] |
| 946 args += rebase_path(outputs, root_build_dir) |
| 946 args += rebase_path(inputs, root_build_dir) | 947 args += rebase_path(inputs, root_build_dir) |
| 947 | 948 |
| 948 deps = make_core_generated_deps | 949 deps = make_core_generated_deps |
| 949 } | 950 } |
| 950 | 951 |
| 951 # "HTMLEntityTable" in make_core_generated from GYP. | 952 # "HTMLEntityTable" in make_core_generated from GYP. |
| 952 action("make_core_generated_html_entity_table") { | 953 action("make_core_generated_html_entity_table") { |
| 953 visibility = [] # Allow re-assignment of list. | 954 visibility = [] # Allow re-assignment of list. |
| 954 visibility = [ ":make_core_generated" ] | 955 visibility = [ ":make_core_generated" ] |
| 955 script = "html/parser/create-html-entity-table" | 956 script = "html/parser/create-html-entity-table" |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1063 "$blink_core_output_dir/{{source_name_part}}.h", | 1064 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1064 ] | 1065 ] |
| 1065 args = [ | 1066 args = [ |
| 1066 "{{source}}", | 1067 "{{source}}", |
| 1067 rel_blink_core_gen_dir, | 1068 rel_blink_core_gen_dir, |
| 1068 bison_exe, | 1069 bison_exe, |
| 1069 ] | 1070 ] |
| 1070 | 1071 |
| 1071 deps = make_core_generated_deps | 1072 deps = make_core_generated_deps |
| 1072 } | 1073 } |
| OLD | NEW |