| 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 1150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1161 "html/parser/HTMLEntityParserTest.cpp", | 1161 "html/parser/HTMLEntityParserTest.cpp", |
| 1162 "html/parser/HTMLParserIdiomsTest.cpp", | 1162 "html/parser/HTMLParserIdiomsTest.cpp", |
| 1163 "html/parser/HTMLParserThreadTest.cpp", | 1163 "html/parser/HTMLParserThreadTest.cpp", |
| 1164 "html/parser/HTMLPreloadScannerTest.cpp", | 1164 "html/parser/HTMLPreloadScannerTest.cpp", |
| 1165 "html/parser/HTMLResourcePreloaderTest.cpp", | 1165 "html/parser/HTMLResourcePreloaderTest.cpp", |
| 1166 "html/parser/HTMLSrcsetParserTest.cpp", | 1166 "html/parser/HTMLSrcsetParserTest.cpp", |
| 1167 "html/parser/HTMLTokenizerTest.cpp", | 1167 "html/parser/HTMLTokenizerTest.cpp", |
| 1168 "html/parser/HTMLTreeBuilderSimulatorTest.cpp", | 1168 "html/parser/HTMLTreeBuilderSimulatorTest.cpp", |
| 1169 "html/parser/HTMLViewSourceParserTest.cpp", | 1169 "html/parser/HTMLViewSourceParserTest.cpp", |
| 1170 "html/parser/TextResourceDecoderTest.cpp", | 1170 "html/parser/TextResourceDecoderTest.cpp", |
| 1171 "html/shadow/MediaControlsLeakTest.cpp", |
| 1171 "html/shadow/MediaControlsOrientationLockDelegateTest.cpp", | 1172 "html/shadow/MediaControlsOrientationLockDelegateTest.cpp", |
| 1172 "html/shadow/MediaControlsTest.cpp", | 1173 "html/shadow/MediaControlsTest.cpp", |
| 1173 "html/track/TextTrackListTest.cpp", | 1174 "html/track/TextTrackListTest.cpp", |
| 1174 "html/track/vtt/BufferedLineReaderTest.cpp", | 1175 "html/track/vtt/BufferedLineReaderTest.cpp", |
| 1175 "html/track/vtt/VTTScannerTest.cpp", | 1176 "html/track/vtt/VTTScannerTest.cpp", |
| 1176 "input/EventHandlerTest.cpp", | 1177 "input/EventHandlerTest.cpp", |
| 1177 "inspector/ProtocolParserTest.cpp", | 1178 "inspector/ProtocolParserTest.cpp", |
| 1178 "layout/ImageQualityControllerTest.cpp", | 1179 "layout/ImageQualityControllerTest.cpp", |
| 1179 "layout/LayoutBlockTest.cpp", | 1180 "layout/LayoutBlockTest.cpp", |
| 1180 "layout/LayoutBoxModelObjectTest.cpp", | 1181 "layout/LayoutBoxModelObjectTest.cpp", |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1329 sources = [ | 1330 sources = [ |
| 1330 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1331 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1331 ] | 1332 ] |
| 1332 deps = [ | 1333 deps = [ |
| 1333 ":core", | 1334 ":core", |
| 1334 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1335 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1335 ] | 1336 ] |
| 1336 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1337 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1337 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1338 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1338 } | 1339 } |
| OLD | NEW |