| 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 1408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1419 "style/OutlineValueTest.cpp", | 1419 "style/OutlineValueTest.cpp", |
| 1420 "style/SVGComputedStyleTest.cpp", | 1420 "style/SVGComputedStyleTest.cpp", |
| 1421 "style/StyleDifferenceTest.cpp", | 1421 "style/StyleDifferenceTest.cpp", |
| 1422 "svg/SVGPathParserTest.cpp", | 1422 "svg/SVGPathParserTest.cpp", |
| 1423 "svg/UnsafeSVGAttributeSanitizationTest.cpp", | 1423 "svg/UnsafeSVGAttributeSanitizationTest.cpp", |
| 1424 "svg/graphics/SVGImageTest.cpp", | 1424 "svg/graphics/SVGImageTest.cpp", |
| 1425 "timing/MemoryInfoTest.cpp", | 1425 "timing/MemoryInfoTest.cpp", |
| 1426 "timing/PerformanceBaseTest.cpp", | 1426 "timing/PerformanceBaseTest.cpp", |
| 1427 "timing/PerformanceNavigationTimingTest.cpp", | 1427 "timing/PerformanceNavigationTimingTest.cpp", |
| 1428 "timing/PerformanceObserverTest.cpp", | 1428 "timing/PerformanceObserverTest.cpp", |
| 1429 "timing/PerformanceResourceTimingTest.cpp", |
| 1429 "timing/PerformanceTest.cpp", | 1430 "timing/PerformanceTest.cpp", |
| 1430 "workers/DedicatedWorkerTest.cpp", | 1431 "workers/DedicatedWorkerTest.cpp", |
| 1431 "workers/MainThreadWorkletTest.cpp", | 1432 "workers/MainThreadWorkletTest.cpp", |
| 1432 "workers/ThreadedWorkletTest.cpp", | 1433 "workers/ThreadedWorkletTest.cpp", |
| 1433 "workers/WorkerThreadTest.cpp", | 1434 "workers/WorkerThreadTest.cpp", |
| 1434 "workers/WorkerThreadTestHelper.h", | 1435 "workers/WorkerThreadTestHelper.h", |
| 1435 "xml/XPathFunctionsTest.cpp", | 1436 "xml/XPathFunctionsTest.cpp", |
| 1436 "xml/parser/SharedBufferReaderTest.cpp", | 1437 "xml/parser/SharedBufferReaderTest.cpp", |
| 1437 ] | 1438 ] |
| 1438 | 1439 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1481 sources = [ | 1482 sources = [ |
| 1482 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1483 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1483 ] | 1484 ] |
| 1484 deps = [ | 1485 deps = [ |
| 1485 ":core", | 1486 ":core", |
| 1486 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1487 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1487 ] | 1488 ] |
| 1488 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1489 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1489 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1490 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1490 } | 1491 } |
| OLD | NEW |