| 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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 "$blink_core_output_dir/ComputedStyleBase.h", | 410 "$blink_core_output_dir/ComputedStyleBase.h", |
| 411 "$blink_core_output_dir/ComputedStyleBaseConstants.h", | 411 "$blink_core_output_dir/ComputedStyleBaseConstants.h", |
| 412 ] | 412 ] |
| 413 } | 413 } |
| 414 | 414 |
| 415 # TODO(shend): Need a better way to specify generated output files | 415 # TODO(shend): Need a better way to specify generated output files |
| 416 css_properties("make_core_generated_css_property_apis") { | 416 css_properties("make_core_generated_css_property_apis") { |
| 417 script = "../build/scripts/make_css_property_apis.py" | 417 script = "../build/scripts/make_css_property_apis.py" |
| 418 other_inputs = [ | 418 other_inputs = [ |
| 419 "../build/scripts/templates/CSSPropertyDescriptor.cpp.tmpl", | 419 "../build/scripts/templates/CSSPropertyDescriptor.cpp.tmpl", |
| 420 "../build/scripts/templates/CSSPropertyDescriptor.h.tmpl", |
| 420 "../build/scripts/templates/CSSPropertyAPIFiles.h.tmpl", | 421 "../build/scripts/templates/CSSPropertyAPIFiles.h.tmpl", |
| 421 "../build/scripts/templates/CSSPropertyAPI.h.tmpl", | 422 "../build/scripts/templates/CSSPropertyAPI.h.tmpl", |
| 422 ] | 423 ] |
| 423 in_files = [ "css/properties/CSSPropertyAPIMethods.json5" ] | 424 in_files = [ "css/properties/CSSPropertyAPIMethods.json5" ] |
| 424 outputs = [ | 425 outputs = [ |
| 425 "$blink_core_output_dir/css/properties/CSSPropertyDescriptor.cpp", | 426 "$blink_core_output_dir/css/properties/CSSPropertyDescriptor.cpp", |
| 427 "$blink_core_output_dir/css/properties/CSSPropertyDescriptor.h", |
| 426 "$blink_core_output_dir/css/properties/CSSPropertyAPI.h", | 428 "$blink_core_output_dir/css/properties/CSSPropertyAPI.h", |
| 427 "$blink_core_output_dir/css/properties/CSSPropertyAPIColumnCount.h", | 429 "$blink_core_output_dir/css/properties/CSSPropertyAPIColumnCount.h", |
| 428 "$blink_core_output_dir/css/properties/CSSPropertyAPIVerticalAlign.h", | 430 "$blink_core_output_dir/css/properties/CSSPropertyAPIVerticalAlign.h", |
| 429 "$blink_core_output_dir/css/properties/CSSPropertyAPIClipPath.h", | 431 "$blink_core_output_dir/css/properties/CSSPropertyAPIClipPath.h", |
| 430 "$blink_core_output_dir/css/properties/CSSPropertyAPIGridTemplateLine.h", | 432 "$blink_core_output_dir/css/properties/CSSPropertyAPIGridTemplateLine.h", |
| 431 "$blink_core_output_dir/css/properties/CSSPropertyAPIPage.h", | 433 "$blink_core_output_dir/css/properties/CSSPropertyAPIPage.h", |
| 432 "$blink_core_output_dir/css/properties/CSSPropertyAPIWebkitMaskRepeat.h", | 434 "$blink_core_output_dir/css/properties/CSSPropertyAPIWebkitMaskRepeat.h", |
| 433 "$blink_core_output_dir/css/properties/CSSPropertyAPIFontVariationSettings.h
", | 435 "$blink_core_output_dir/css/properties/CSSPropertyAPIFontVariationSettings.h
", |
| 434 "$blink_core_output_dir/css/properties/CSSPropertyAPIWebkitBorderWidth.h", | 436 "$blink_core_output_dir/css/properties/CSSPropertyAPIWebkitBorderWidth.h", |
| 435 "$blink_core_output_dir/css/properties/CSSPropertyAPIZIndex.h", | 437 "$blink_core_output_dir/css/properties/CSSPropertyAPIZIndex.h", |
| (...skipping 985 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1421 sources = [ | 1423 sources = [ |
| 1422 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1424 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1423 ] | 1425 ] |
| 1424 deps = [ | 1426 deps = [ |
| 1425 ":core", | 1427 ":core", |
| 1426 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1428 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1427 ] | 1429 ] |
| 1428 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1430 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1429 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1431 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1430 } | 1432 } |
| OLD | NEW |