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

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

Issue 2187493004: Add a generated ComputedStyleBase class that ComputedStyle extends (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@_make_visibility_enum_class_rebase
Patch Set: Rebase onto fast path patches Created 4 years, 3 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/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//build/split_static_library.gni") 7 import("//build/split_static_library.gni")
8 import("//testing/libfuzzer/fuzzer_test.gni") 8 import("//testing/libfuzzer/fuzzer_test.gni")
9 import("//third_party/WebKit/Source/bindings/bindings.gni") 9 import("//third_party/WebKit/Source/bindings/bindings.gni")
10 import("//third_party/WebKit/Source/bindings/modules/modules.gni") 10 import("//third_party/WebKit/Source/bindings/modules/modules.gni")
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 "$blink_core_output_dir/testing/InternalRuntimeFlags.h", 361 "$blink_core_output_dir/testing/InternalRuntimeFlags.h",
362 ] 362 ]
363 363
364 args = [ 364 args = [
365 rebase_path("../platform/RuntimeEnabledFeatures.in", root_build_dir), 365 rebase_path("../platform/RuntimeEnabledFeatures.in", root_build_dir),
366 "--output_dir", 366 "--output_dir",
367 "$rel_blink_core_gen_dir/testing", 367 "$rel_blink_core_gen_dir/testing",
368 ] 368 ]
369 } 369 }
370 370
371 css_properties("make_core_generated_computed_style_base") {
372 script = "../build/scripts/make_computed_style_base.py"
373 other_inputs = [
374 "../build/scripts/templates/ComputedStyleBase.cpp.tmpl",
375 "../build/scripts/templates/ComputedStyleBase.h.tmpl",
376 "../build/scripts/templates/ComputedStyleBaseConstants.h.tmpl",
377 ]
378 outputs = [
379 "$blink_core_output_dir/ComputedStyleBase.cpp",
380 "$blink_core_output_dir/ComputedStyleBase.h",
381 "$blink_core_output_dir/ComputedStyleBaseConstants.h",
382 ]
383 }
384
371 css_properties("make_core_generated_css_property_names") { 385 css_properties("make_core_generated_css_property_names") {
372 script = "../build/scripts/make_css_property_names.py" 386 script = "../build/scripts/make_css_property_names.py"
373 outputs = [ 387 outputs = [
374 "$blink_core_output_dir/CSSPropertyNames.cpp", 388 "$blink_core_output_dir/CSSPropertyNames.cpp",
375 "$blink_core_output_dir/CSSPropertyNames.h", 389 "$blink_core_output_dir/CSSPropertyNames.h",
376 ] 390 ]
377 } 391 }
378 392
379 process_in_files("make_core_generated_media_features") { 393 process_in_files("make_core_generated_media_features") {
380 script = "../build/scripts/make_media_features.py" 394 script = "../build/scripts/make_media_features.py"
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
802 target(core_link_small_target_type, "core_generated") { 816 target(core_link_small_target_type, "core_generated") {
803 sources = bindings_core_v8_files 817 sources = bindings_core_v8_files
804 818
805 # Targets from above that generate outputs that need to be compiled. 819 # Targets from above that generate outputs that need to be compiled.
806 # All sources declared as outputs from these targets will be compiled into thi s 820 # All sources declared as outputs from these targets will be compiled into thi s
807 # target. 821 # target.
808 targets_generating_sources = [ 822 targets_generating_sources = [
809 ":make_core_generated_bison", 823 ":make_core_generated_bison",
810 ":make_core_generated_css_primitive_value_unit_trie", 824 ":make_core_generated_css_primitive_value_unit_trie",
811 ":make_core_generated_css_property_metadata", 825 ":make_core_generated_css_property_metadata",
826 ":make_core_generated_computed_style_base",
812 ":make_core_generated_css_property_names", 827 ":make_core_generated_css_property_names",
813 ":make_core_generated_cssom_types", 828 ":make_core_generated_cssom_types",
814 ":make_core_generated_event_factory", 829 ":make_core_generated_event_factory",
815 ":make_core_generated_event_names", 830 ":make_core_generated_event_names",
816 ":make_core_generated_event_target_names", 831 ":make_core_generated_event_target_names",
817 ":make_core_generated_event_type_names", 832 ":make_core_generated_event_type_names",
818 ":make_core_generated_fetch_initiator_type_names", 833 ":make_core_generated_fetch_initiator_type_names",
819 ":make_core_generated_html_element_factory", 834 ":make_core_generated_html_element_factory",
820 ":make_core_generated_html_element_lookup_trie", 835 ":make_core_generated_html_element_lookup_trie",
821 ":make_core_generated_html_entity_table", 836 ":make_core_generated_html_entity_table",
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
1235 sources = [ 1250 sources = [
1236 "html/parser/HTMLPreloadScannerFuzzer.cpp", 1251 "html/parser/HTMLPreloadScannerFuzzer.cpp",
1237 "html/parser/TextResourceDecoderForFuzzing.h", 1252 "html/parser/TextResourceDecoderForFuzzing.h",
1238 ] 1253 ]
1239 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" 1254 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser"
1240 deps = [ 1255 deps = [
1241 ":core", 1256 ":core",
1242 "../platform:blink_fuzzer_test_support", 1257 "../platform:blink_fuzzer_test_support",
1243 ] 1258 ]
1244 } 1259 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698