| 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 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1206 "html/parser/HTMLEntityParserTest.cpp", | 1206 "html/parser/HTMLEntityParserTest.cpp", |
| 1207 "html/parser/HTMLParserIdiomsTest.cpp", | 1207 "html/parser/HTMLParserIdiomsTest.cpp", |
| 1208 "html/parser/HTMLParserThreadTest.cpp", | 1208 "html/parser/HTMLParserThreadTest.cpp", |
| 1209 "html/parser/HTMLPreloadScannerTest.cpp", | 1209 "html/parser/HTMLPreloadScannerTest.cpp", |
| 1210 "html/parser/HTMLResourcePreloaderTest.cpp", | 1210 "html/parser/HTMLResourcePreloaderTest.cpp", |
| 1211 "html/parser/HTMLSrcsetParserTest.cpp", | 1211 "html/parser/HTMLSrcsetParserTest.cpp", |
| 1212 "html/parser/HTMLTokenizerTest.cpp", | 1212 "html/parser/HTMLTokenizerTest.cpp", |
| 1213 "html/parser/HTMLTreeBuilderSimulatorTest.cpp", | 1213 "html/parser/HTMLTreeBuilderSimulatorTest.cpp", |
| 1214 "html/parser/HTMLViewSourceParserTest.cpp", | 1214 "html/parser/HTMLViewSourceParserTest.cpp", |
| 1215 "html/parser/TextResourceDecoderTest.cpp", | 1215 "html/parser/TextResourceDecoderTest.cpp", |
| 1216 "html/shadow/MediaControlsOrientationLockDelegateTest.cpp", |
| 1216 "html/shadow/MediaControlsTest.cpp", | 1217 "html/shadow/MediaControlsTest.cpp", |
| 1217 "html/track/TextTrackListTest.cpp", | 1218 "html/track/TextTrackListTest.cpp", |
| 1218 "html/track/vtt/BufferedLineReaderTest.cpp", | 1219 "html/track/vtt/BufferedLineReaderTest.cpp", |
| 1219 "html/track/vtt/VTTScannerTest.cpp", | 1220 "html/track/vtt/VTTScannerTest.cpp", |
| 1220 "input/EventHandlerTest.cpp", | 1221 "input/EventHandlerTest.cpp", |
| 1221 "inspector/ProtocolParserTest.cpp", | 1222 "inspector/ProtocolParserTest.cpp", |
| 1222 "layout/ImageQualityControllerTest.cpp", | 1223 "layout/ImageQualityControllerTest.cpp", |
| 1223 "layout/LayoutBlockTest.cpp", | 1224 "layout/LayoutBlockTest.cpp", |
| 1224 "layout/LayoutBoxModelObjectTest.cpp", | 1225 "layout/LayoutBoxModelObjectTest.cpp", |
| 1225 "layout/LayoutBoxTest.cpp", | 1226 "layout/LayoutBoxTest.cpp", |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1367 sources = [ | 1368 sources = [ |
| 1368 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1369 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1369 ] | 1370 ] |
| 1370 deps = [ | 1371 deps = [ |
| 1371 ":core", | 1372 ":core", |
| 1372 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1373 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1373 ] | 1374 ] |
| 1374 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1375 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1375 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1376 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1376 } | 1377 } |
| OLD | NEW |