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

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

Issue 415613002: Merge CSSPropertyNames.in and SVGCSSPropertyNames.in with CSSProperties.in (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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/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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 ":make_core_generated_xml_names", 582 ":make_core_generated_xml_names",
583 ":make_core_generated_make_token_matcher", 583 ":make_core_generated_make_token_matcher",
584 ":make_core_generated_make_parser", 584 ":make_core_generated_make_parser",
585 ":make_core_generated_make_token_matcher_for_viewport", 585 ":make_core_generated_make_token_matcher_for_viewport",
586 ":make_core_generated_html_element_lookup_trie", 586 ":make_core_generated_html_element_lookup_trie",
587 ":make_core_generated_bison", 587 ":make_core_generated_bison",
588 ] 588 ]
589 } 589 }
590 590
591 # "CSSPropertyNames" in make_core_generated from GYP. 591 # "CSSPropertyNames" in make_core_generated from GYP.
592 process_in_files("make_core_generated_css_property_names") { 592 css_properties("make_core_generated_css_property_names") {
593 script = "../build/scripts/make_css_property_names.py" 593 script = "../build/scripts/make_css_property_names.py"
594 in_files = [
595 "css/CSSPropertyNames.in",
596 "css/SVGCSSPropertyNames.in",
597 ]
598 outputs = [ 594 outputs = [
599 "$blink_core_output_dir/CSSPropertyNames.cpp", 595 "$blink_core_output_dir/CSSPropertyNames.cpp",
600 "$blink_core_output_dir/CSSPropertyNames.h", 596 "$blink_core_output_dir/CSSPropertyNames.h",
601 ] 597 ]
602 } 598 }
603 599
604 # "MediaFeatures" in make_core_generated from GYP. 600 # "MediaFeatures" in make_core_generated from GYP.
605 process_in_files("make_core_generated_media_features") { 601 process_in_files("make_core_generated_media_features") {
606 script = "../build/scripts/make_media_features.py" 602 script = "../build/scripts/make_media_features.py"
607 in_files = [ 603 in_files = [
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
1065 "$blink_core_output_dir/{{source_name_part}}.h", 1061 "$blink_core_output_dir/{{source_name_part}}.h",
1066 ] 1062 ]
1067 args = [ 1063 args = [
1068 "{{source}}", 1064 "{{source}}",
1069 rel_blink_core_gen_dir, 1065 rel_blink_core_gen_dir,
1070 bison_exe, 1066 bison_exe,
1071 ] 1067 ]
1072 1068
1073 deps = make_core_generated_deps 1069 deps = make_core_generated_deps
1074 } 1070 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698