| 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 950 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 961 deps = make_core_generated_deps | 961 deps = make_core_generated_deps |
| 962 } | 962 } |
| 963 | 963 |
| 964 # "HTMLElementLookupTrie" in make_core_generated from GYP. | 964 # "HTMLElementLookupTrie" in make_core_generated from GYP. |
| 965 action("make_core_generated_html_element_lookup_trie") { | 965 action("make_core_generated_html_element_lookup_trie") { |
| 966 visibility = [] # Allow re-assignment of list. | 966 visibility = [] # Allow re-assignment of list. |
| 967 visibility = [ ":make_core_generated" ] | 967 visibility = [ ":make_core_generated" ] |
| 968 script = "../build/scripts/make_element_lookup_trie.py" | 968 script = "../build/scripts/make_element_lookup_trie.py" |
| 969 | 969 |
| 970 input_file = "html/HTMLTagNames.in" | 970 input_file = "html/HTMLTagNames.in" |
| 971 inputs = scripts_for_in_files + [ | 971 inputs = make_trie_helpers_files + [ |
| 972 input_file, | 972 input_file, |
| 973 "../build/scripts/templates/ElementLookupTrie.cpp.tmpl", | 973 "../build/scripts/templates/ElementLookupTrie.cpp.tmpl", |
| 974 "../build/scripts/templates/ElementLookupTrie.h.tmpl", | 974 "../build/scripts/templates/ElementLookupTrie.h.tmpl", |
| 975 ] | 975 ] |
| 976 outputs = [ | 976 outputs = [ |
| 977 "$blink_core_output_dir/HTMLElementLookupTrie.cpp", | 977 "$blink_core_output_dir/HTMLElementLookupTrie.cpp", |
| 978 "$blink_core_output_dir/HTMLElementLookupTrie.h", | 978 "$blink_core_output_dir/HTMLElementLookupTrie.h", |
| 979 ] | 979 ] |
| 980 | 980 |
| 981 args = [ | 981 args = [ |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1020 "$blink_core_output_dir/{{source_name_part}}.h", | 1020 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1021 ] | 1021 ] |
| 1022 args = [ | 1022 args = [ |
| 1023 "{{source}}", | 1023 "{{source}}", |
| 1024 rel_blink_core_gen_dir, | 1024 rel_blink_core_gen_dir, |
| 1025 bison_exe, | 1025 bison_exe, |
| 1026 ] | 1026 ] |
| 1027 | 1027 |
| 1028 deps = make_core_generated_deps | 1028 deps = make_core_generated_deps |
| 1029 } | 1029 } |
| OLD | NEW |