| 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/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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 "../build/scripts/templates/ComputedStyleBase.h.tmpl", | 419 "../build/scripts/templates/ComputedStyleBase.h.tmpl", |
| 420 "../build/scripts/templates/ComputedStyleBaseConstants.h.tmpl", | 420 "../build/scripts/templates/ComputedStyleBaseConstants.h.tmpl", |
| 421 ] | 421 ] |
| 422 outputs = [ | 422 outputs = [ |
| 423 "$blink_core_output_dir/ComputedStyleBase.cpp", | 423 "$blink_core_output_dir/ComputedStyleBase.cpp", |
| 424 "$blink_core_output_dir/ComputedStyleBase.h", | 424 "$blink_core_output_dir/ComputedStyleBase.h", |
| 425 "$blink_core_output_dir/ComputedStyleBaseConstants.h", | 425 "$blink_core_output_dir/ComputedStyleBaseConstants.h", |
| 426 ] | 426 ] |
| 427 } | 427 } |
| 428 | 428 |
| 429 css_properties("make_core_generated_css_property_api") { |
| 430 script = "../build/scripts/make_css_property_api.py" |
| 431 other_inputs = [ "../build/scripts/templates/CSSPropertyDescriptor.cpp.tmpl" ] |
| 432 outputs = [ |
| 433 "$blink_core_output_dir/css/properties/CSSPropertyDescriptor.cpp", |
| 434 ] |
| 435 } |
| 436 |
| 429 css_properties("make_core_generated_css_property_names") { | 437 css_properties("make_core_generated_css_property_names") { |
| 430 script = "../build/scripts/make_css_property_names.py" | 438 script = "../build/scripts/make_css_property_names.py" |
| 431 outputs = [ | 439 outputs = [ |
| 432 "$blink_core_output_dir/CSSPropertyNames.cpp", | 440 "$blink_core_output_dir/CSSPropertyNames.cpp", |
| 433 "$blink_core_output_dir/CSSPropertyNames.h", | 441 "$blink_core_output_dir/CSSPropertyNames.h", |
| 434 ] | 442 ] |
| 435 } | 443 } |
| 436 | 444 |
| 437 process_in_files("make_core_generated_media_features") { | 445 process_in_files("make_core_generated_media_features") { |
| 438 script = "../build/scripts/make_media_features.py" | 446 script = "../build/scripts/make_media_features.py" |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 903 } | 911 } |
| 904 | 912 |
| 905 # Targets from above that generate outputs that need to be compiled. | 913 # Targets from above that generate outputs that need to be compiled. |
| 906 # All sources declared as outputs from these targets will be compiled into one | 914 # All sources declared as outputs from these targets will be compiled into one |
| 907 # target. | 915 # target. |
| 908 targets_generating_sources = [ | 916 targets_generating_sources = [ |
| 909 ":make_core_generated_bison", | 917 ":make_core_generated_bison", |
| 910 ":make_core_generated_css_primitive_value_unit_trie", | 918 ":make_core_generated_css_primitive_value_unit_trie", |
| 911 ":make_core_generated_css_property_metadata", | 919 ":make_core_generated_css_property_metadata", |
| 912 ":make_core_generated_computed_style_base", | 920 ":make_core_generated_computed_style_base", |
| 921 ":make_core_generated_css_property_api", |
| 913 ":make_core_generated_css_property_names", | 922 ":make_core_generated_css_property_names", |
| 914 ":make_core_generated_cssom_types", | 923 ":make_core_generated_cssom_types", |
| 915 ":make_core_generated_event_factory", | 924 ":make_core_generated_event_factory", |
| 916 ":make_core_generated_event_names", | 925 ":make_core_generated_event_names", |
| 917 ":make_core_generated_event_target_names", | 926 ":make_core_generated_event_target_names", |
| 918 ":make_core_generated_event_type_names", | 927 ":make_core_generated_event_type_names", |
| 919 ":make_core_generated_fetch_initiator_type_names", | 928 ":make_core_generated_fetch_initiator_type_names", |
| 920 ":make_core_generated_html_element_factory", | 929 ":make_core_generated_html_element_factory", |
| 921 ":make_core_generated_html_element_lookup_trie", | 930 ":make_core_generated_html_element_lookup_trie", |
| 922 ":make_core_generated_html_entity_table", | 931 ":make_core_generated_html_entity_table", |
| (...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1363 sources = [ | 1372 sources = [ |
| 1364 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1373 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1365 ] | 1374 ] |
| 1366 deps = [ | 1375 deps = [ |
| 1367 ":core", | 1376 ":core", |
| 1368 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1377 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1369 ] | 1378 ] |
| 1370 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1379 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1371 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1380 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1372 } | 1381 } |
| OLD | NEW |