| 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 1457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1468 ":blink_core_pch", | 1468 ":blink_core_pch", |
| 1469 "//third_party/WebKit/Source:config", | 1469 "//third_party/WebKit/Source:config", |
| 1470 "//third_party/WebKit/Source:inside_blink", | 1470 "//third_party/WebKit/Source:inside_blink", |
| 1471 ] | 1471 ] |
| 1472 | 1472 |
| 1473 deps = [ | 1473 deps = [ |
| 1474 ":core", | 1474 ":core", |
| 1475 "//testing/gmock", | 1475 "//testing/gmock", |
| 1476 "//testing/gtest", | 1476 "//testing/gtest", |
| 1477 "//third_party/WebKit/Source/core/editing:unit_tests", | 1477 "//third_party/WebKit/Source/core/editing:unit_tests", |
| 1478 "//third_party/WebKit/Source/core/mojo:unit_tests", |
| 1478 ] | 1479 ] |
| 1479 } | 1480 } |
| 1480 | 1481 |
| 1481 # Fuzzer for blink::StyleSheetContents | 1482 # Fuzzer for blink::StyleSheetContents |
| 1482 fuzzer_test("stylesheet_contents_fuzzer") { | 1483 fuzzer_test("stylesheet_contents_fuzzer") { |
| 1483 sources = [ | 1484 sources = [ |
| 1484 "css/StyleSheetContentsFuzzer.cpp", | 1485 "css/StyleSheetContentsFuzzer.cpp", |
| 1485 ] | 1486 ] |
| 1486 deps = [ | 1487 deps = [ |
| 1487 ":core", | 1488 ":core", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 1509 sources = [ | 1510 sources = [ |
| 1510 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1511 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1511 ] | 1512 ] |
| 1512 deps = [ | 1513 deps = [ |
| 1513 ":core", | 1514 ":core", |
| 1514 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1515 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1515 ] | 1516 ] |
| 1516 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1517 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1517 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1518 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1518 } | 1519 } |
| OLD | NEW |