| 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 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 other_inputs = [ | 417 other_inputs = [ |
| 418 "../build/scripts/templates/fields/field.tmpl", | 418 "../build/scripts/templates/fields/field.tmpl", |
| 419 "../build/scripts/templates/fields/group.tmpl", | 419 "../build/scripts/templates/fields/group.tmpl", |
| 420 "../build/scripts/templates/fields/base.tmpl", | 420 "../build/scripts/templates/fields/base.tmpl", |
| 421 "../build/scripts/templates/fields/keyword.tmpl", | 421 "../build/scripts/templates/fields/keyword.tmpl", |
| 422 "../build/scripts/templates/fields/primitive.tmpl", | 422 "../build/scripts/templates/fields/primitive.tmpl", |
| 423 "../build/scripts/templates/fields/monotonic_flag.tmpl", | 423 "../build/scripts/templates/fields/monotonic_flag.tmpl", |
| 424 "../build/scripts/templates/fields/storage_only.tmpl", | 424 "../build/scripts/templates/fields/storage_only.tmpl", |
| 425 "../build/scripts/templates/fields/external.tmpl", | 425 "../build/scripts/templates/fields/external.tmpl", |
| 426 "../build/scripts/templates/ComputedStyleBase.h.tmpl", | 426 "../build/scripts/templates/ComputedStyleBase.h.tmpl", |
| 427 "../build/scripts/templates/ComputedStyleBase.cpp.tmpl", |
| 427 "../build/scripts/templates/ComputedStyleBaseConstants.h.tmpl", | 428 "../build/scripts/templates/ComputedStyleBaseConstants.h.tmpl", |
| 428 ] | 429 ] |
| 429 outputs = [ | 430 outputs = [ |
| 430 "$blink_core_output_dir/ComputedStyleBase.h", | 431 "$blink_core_output_dir/ComputedStyleBase.h", |
| 432 "$blink_core_output_dir/ComputedStyleBase.cpp", |
| 431 "$blink_core_output_dir/ComputedStyleBaseConstants.h", | 433 "$blink_core_output_dir/ComputedStyleBaseConstants.h", |
| 432 ] | 434 ] |
| 433 } | 435 } |
| 434 | 436 |
| 435 css_properties("make_core_generated_css_value_id_mappings") { | 437 css_properties("make_core_generated_css_value_id_mappings") { |
| 436 script = "../build/scripts/make_css_value_id_mappings.py" | 438 script = "../build/scripts/make_css_value_id_mappings.py" |
| 437 other_inputs = | 439 other_inputs = |
| 438 [ "../build/scripts/templates/CSSValueIDMappingsGenerated.h.tmpl" ] | 440 [ "../build/scripts/templates/CSSValueIDMappingsGenerated.h.tmpl" ] |
| 439 outputs = [ | 441 outputs = [ |
| 440 "$blink_core_output_dir/CSSValueIDMappingsGenerated.h", | 442 "$blink_core_output_dir/CSSValueIDMappingsGenerated.h", |
| (...skipping 1037 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1478 sources = [ | 1480 sources = [ |
| 1479 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1481 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1480 ] | 1482 ] |
| 1481 deps = [ | 1483 deps = [ |
| 1482 ":core", | 1484 ":core", |
| 1483 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1485 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1484 ] | 1486 ] |
| 1485 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1487 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1486 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1488 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1487 } | 1489 } |
| OLD | NEW |