| 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 1424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1435 ":blink_core_pch", | 1435 ":blink_core_pch", |
| 1436 "//third_party/WebKit/Source:config", | 1436 "//third_party/WebKit/Source:config", |
| 1437 "//third_party/WebKit/Source:inside_blink", | 1437 "//third_party/WebKit/Source:inside_blink", |
| 1438 ] | 1438 ] |
| 1439 | 1439 |
| 1440 deps = [ | 1440 deps = [ |
| 1441 ":core", | 1441 ":core", |
| 1442 "//testing/gmock", | 1442 "//testing/gmock", |
| 1443 "//testing/gtest", | 1443 "//testing/gtest", |
| 1444 "//third_party/WebKit/Source/core/editing:unit_tests", | 1444 "//third_party/WebKit/Source/core/editing:unit_tests", |
| 1445 "//third_party/WebKit/Source/core/mojo:unit_tests", |
| 1445 ] | 1446 ] |
| 1446 } | 1447 } |
| 1447 | 1448 |
| 1448 # Fuzzer for blink::StyleSheetContents | 1449 # Fuzzer for blink::StyleSheetContents |
| 1449 fuzzer_test("stylesheet_contents_fuzzer") { | 1450 fuzzer_test("stylesheet_contents_fuzzer") { |
| 1450 sources = [ | 1451 sources = [ |
| 1451 "css/StyleSheetContentsFuzzer.cpp", | 1452 "css/StyleSheetContentsFuzzer.cpp", |
| 1452 ] | 1453 ] |
| 1453 deps = [ | 1454 deps = [ |
| 1454 ":core", | 1455 ":core", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 1476 sources = [ | 1477 sources = [ |
| 1477 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1478 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1478 ] | 1479 ] |
| 1479 deps = [ | 1480 deps = [ |
| 1480 ":core", | 1481 ":core", |
| 1481 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1482 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1482 ] | 1483 ] |
| 1483 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1484 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1484 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1485 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1485 } | 1486 } |
| OLD | NEW |