| 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 1232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1243 "html/parser/CSSPreloadScannerTest.cpp", | 1243 "html/parser/CSSPreloadScannerTest.cpp", |
| 1244 "html/parser/CompactHTMLTokenTest.cpp", | 1244 "html/parser/CompactHTMLTokenTest.cpp", |
| 1245 "html/parser/HTMLDocumentParserTest.cpp", | 1245 "html/parser/HTMLDocumentParserTest.cpp", |
| 1246 "html/parser/HTMLEntityParserTest.cpp", | 1246 "html/parser/HTMLEntityParserTest.cpp", |
| 1247 "html/parser/HTMLParserIdiomsTest.cpp", | 1247 "html/parser/HTMLParserIdiomsTest.cpp", |
| 1248 "html/parser/HTMLParserThreadTest.cpp", | 1248 "html/parser/HTMLParserThreadTest.cpp", |
| 1249 "html/parser/HTMLPreloadScannerTest.cpp", | 1249 "html/parser/HTMLPreloadScannerTest.cpp", |
| 1250 "html/parser/HTMLResourcePreloaderTest.cpp", | 1250 "html/parser/HTMLResourcePreloaderTest.cpp", |
| 1251 "html/parser/HTMLSrcsetParserTest.cpp", | 1251 "html/parser/HTMLSrcsetParserTest.cpp", |
| 1252 "html/parser/HTMLTokenizerTest.cpp", | 1252 "html/parser/HTMLTokenizerTest.cpp", |
| 1253 "html/parser/HTMLViewSourceParserTest.cpp", | |
| 1254 "html/parser/TextResourceDecoderTest.cpp", | 1253 "html/parser/TextResourceDecoderTest.cpp", |
| 1255 "html/shadow/MediaControlsTest.cpp", | 1254 "html/shadow/MediaControlsTest.cpp", |
| 1256 "html/track/TextTrackListTest.cpp", | 1255 "html/track/TextTrackListTest.cpp", |
| 1257 "html/track/vtt/BufferedLineReaderTest.cpp", | 1256 "html/track/vtt/BufferedLineReaderTest.cpp", |
| 1258 "html/track/vtt/VTTScannerTest.cpp", | 1257 "html/track/vtt/VTTScannerTest.cpp", |
| 1259 "input/EventHandlerTest.cpp", | 1258 "input/EventHandlerTest.cpp", |
| 1260 "inspector/ProtocolParserTest.cpp", | 1259 "inspector/ProtocolParserTest.cpp", |
| 1261 "layout/ImageQualityControllerTest.cpp", | 1260 "layout/ImageQualityControllerTest.cpp", |
| 1262 "layout/InlineTextBoxTest.cpp", | 1261 "layout/InlineTextBoxTest.cpp", |
| 1263 "layout/LayoutBlockTest.cpp", | 1262 "layout/LayoutBlockTest.cpp", |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1400 sources = [ | 1399 sources = [ |
| 1401 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1400 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1402 ] | 1401 ] |
| 1403 deps = [ | 1402 deps = [ |
| 1404 ":core", | 1403 ":core", |
| 1405 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1404 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1406 ] | 1405 ] |
| 1407 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1406 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1408 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1407 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1409 } | 1408 } |
| OLD | NEW |