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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//third_party/WebKit/Source/bindings/bindings.gni") | 7 import("//third_party/WebKit/Source/bindings/bindings.gni") |
8 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") | 8 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") |
9 import("//third_party/WebKit/Source/bindings/modules/modules.gni") | 9 import("//third_party/WebKit/Source/bindings/modules/modules.gni") |
10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
(...skipping 918 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 = [] # Allow re-assignment of list. | 932 visibility = [] # Allow re-assignment of list. |
933 visibility = [ ":make_core_generated" ] | 933 visibility = [ ":make_core_generated" ] |
934 script = "../build/scripts/make_private_script_source.py" | 934 script = "../build/scripts/make_private_script_source.py" |
935 | 935 |
936 inputs = [ | 936 inputs = [ |
937 "../bindings/core/v8/PrivateScriptRunner.js", | 937 "../bindings/core/v8/PrivateScriptRunner.js", |
938 "html/HTMLMarqueeElement.js", | 938 "html/HTMLMarqueeElement.js", |
939 "html/shadow/PluginPlaceholderElement.js", | |
940 "xml/DocumentXMLTreeViewer.js", | 939 "xml/DocumentXMLTreeViewer.js", |
941 ] | 940 ] |
942 outputs = [ | 941 outputs = [ |
943 "$blink_core_output_dir/PrivateScriptSources.h", | 942 "$blink_core_output_dir/PrivateScriptSources.h", |
944 ] | 943 ] |
945 | 944 |
946 args = rebase_path(outputs, root_build_dir) | 945 args = rebase_path(outputs, root_build_dir) |
947 args += rebase_path(inputs, root_build_dir) | 946 args += rebase_path(inputs, root_build_dir) |
948 | 947 |
949 deps = make_core_generated_deps | 948 deps = make_core_generated_deps |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1041 "$blink_core_output_dir/{{source_name_part}}.h", | 1040 "$blink_core_output_dir/{{source_name_part}}.h", |
1042 ] | 1041 ] |
1043 args = [ | 1042 args = [ |
1044 "{{source}}", | 1043 "{{source}}", |
1045 rel_blink_core_gen_dir, | 1044 rel_blink_core_gen_dir, |
1046 bison_exe, | 1045 bison_exe, |
1047 ] | 1046 ] |
1048 | 1047 |
1049 deps = make_core_generated_deps | 1048 deps = make_core_generated_deps |
1050 } | 1049 } |
OLD | NEW |