Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Side by Side Diff: third_party/WebKit/Source/core/BUILD.gn

Issue 2422663002: Define WebTextInputMode as a enum in the public API. (Closed)
Patch Set: git cl format Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/toolchain/toolchain.gni") 6 import("//build/toolchain/toolchain.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/split_static_library.gni") 8 import("//build/split_static_library.gni")
9 import("//testing/libfuzzer/fuzzer_test.gni") 9 import("//testing/libfuzzer/fuzzer_test.gni")
10 import("//third_party/WebKit/Source/bindings/bindings.gni") 10 import("//third_party/WebKit/Source/bindings/bindings.gni")
(...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 } 599 }
600 600
601 make_names("make_core_generated_input_type_names") { 601 make_names("make_core_generated_input_type_names") {
602 in_files = [ "html/forms/InputTypeNames.in" ] 602 in_files = [ "html/forms/InputTypeNames.in" ]
603 outputs = [ 603 outputs = [
604 "$blink_core_output_dir/InputTypeNames.cpp", 604 "$blink_core_output_dir/InputTypeNames.cpp",
605 "$blink_core_output_dir/InputTypeNames.h", 605 "$blink_core_output_dir/InputTypeNames.h",
606 ] 606 ]
607 } 607 }
608 608
609 make_names("make_core_generated_input_mode_names") {
610 in_files = [ "editing/InputModeNames.in" ]
611 outputs = [
612 "$blink_core_output_dir/InputModeNames.cpp",
613 "$blink_core_output_dir/InputModeNames.h",
614 ]
615 }
616
609 # make_qualified_names --------------------------------------------------------- 617 # make_qualified_names ---------------------------------------------------------
610 618
611 make_qualified_names("make_core_generated_math_ml_names") { 619 make_qualified_names("make_core_generated_math_ml_names") {
612 in_files = [ 620 in_files = [
613 "html/parser/MathMLTagNames.in", 621 "html/parser/MathMLTagNames.in",
614 "html/parser/MathMLAttributeNames.in", 622 "html/parser/MathMLAttributeNames.in",
615 ] 623 ]
616 outputs = [ 624 outputs = [
617 "$blink_core_output_dir/MathMLNames.cpp", 625 "$blink_core_output_dir/MathMLNames.cpp",
618 "$blink_core_output_dir/MathMLNames.h", 626 "$blink_core_output_dir/MathMLNames.h",
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
853 ":make_core_generated_cssom_types", 861 ":make_core_generated_cssom_types",
854 ":make_core_generated_event_factory", 862 ":make_core_generated_event_factory",
855 ":make_core_generated_event_names", 863 ":make_core_generated_event_names",
856 ":make_core_generated_event_target_names", 864 ":make_core_generated_event_target_names",
857 ":make_core_generated_event_type_names", 865 ":make_core_generated_event_type_names",
858 ":make_core_generated_fetch_initiator_type_names", 866 ":make_core_generated_fetch_initiator_type_names",
859 ":make_core_generated_html_element_factory", 867 ":make_core_generated_html_element_factory",
860 ":make_core_generated_html_element_lookup_trie", 868 ":make_core_generated_html_element_lookup_trie",
861 ":make_core_generated_html_entity_table", 869 ":make_core_generated_html_entity_table",
862 ":make_core_generated_html_tokenizer_names", 870 ":make_core_generated_html_tokenizer_names",
871 ":make_core_generated_input_mode_names",
863 ":make_core_generated_input_type_names", 872 ":make_core_generated_input_type_names",
864 ":make_core_generated_math_ml_names", 873 ":make_core_generated_math_ml_names",
865 ":make_core_generated_media_feature_names", 874 ":make_core_generated_media_feature_names",
866 ":make_core_generated_media_type_names", 875 ":make_core_generated_media_type_names",
867 ":make_core_generated_origin_trials", 876 ":make_core_generated_origin_trials",
868 ":make_core_generated_style_builder", 877 ":make_core_generated_style_builder",
869 ":make_core_generated_style_property_shorthand", 878 ":make_core_generated_style_property_shorthand",
870 ":make_core_generated_svg_names", 879 ":make_core_generated_svg_names",
871 ":make_core_generated_xlink_names", 880 ":make_core_generated_xlink_names",
872 ":make_core_generated_xml_names", 881 ":make_core_generated_xml_names",
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
1287 sources = [ 1296 sources = [
1288 "html/parser/HTMLPreloadScannerFuzzer.cpp", 1297 "html/parser/HTMLPreloadScannerFuzzer.cpp",
1289 "html/parser/TextResourceDecoderForFuzzing.h", 1298 "html/parser/TextResourceDecoderForFuzzing.h",
1290 ] 1299 ]
1291 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" 1300 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser"
1292 deps = [ 1301 deps = [
1293 ":core", 1302 ":core",
1294 "../platform:blink_fuzzer_test_support", 1303 "../platform:blink_fuzzer_test_support",
1295 ] 1304 ]
1296 } 1305 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698