| 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 993 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1004 "css/resolver/MatchResultTest.cpp", | 1004 "css/resolver/MatchResultTest.cpp", |
| 1005 "css/resolver/SharedStyleFinderTest.cpp", | 1005 "css/resolver/SharedStyleFinderTest.cpp", |
| 1006 "dom/ActiveDOMObjectTest.cpp", | 1006 "dom/ActiveDOMObjectTest.cpp", |
| 1007 "dom/AttrTest.cpp", | 1007 "dom/AttrTest.cpp", |
| 1008 "dom/CSSSelectorWatchTest.cpp", | 1008 "dom/CSSSelectorWatchTest.cpp", |
| 1009 "dom/DOMImplementationTest.cpp", | 1009 "dom/DOMImplementationTest.cpp", |
| 1010 "dom/DOMMatrixTest.cpp", | 1010 "dom/DOMMatrixTest.cpp", |
| 1011 "dom/DocumentStatisticsCollectorTest.cpp", | 1011 "dom/DocumentStatisticsCollectorTest.cpp", |
| 1012 "dom/DocumentTest.cpp", | 1012 "dom/DocumentTest.cpp", |
| 1013 "dom/ElementTest.cpp", | 1013 "dom/ElementTest.cpp", |
| 1014 "dom/ElementVisibilityObserverTest.cpp", |
| 1014 "dom/ExecutionContextTaskTest.cpp", | 1015 "dom/ExecutionContextTaskTest.cpp", |
| 1015 "dom/MainThreadTaskRunnerTest.cpp", | 1016 "dom/MainThreadTaskRunnerTest.cpp", |
| 1016 "dom/NodeTest.cpp", | 1017 "dom/NodeTest.cpp", |
| 1017 "dom/NthIndexCacheTest.cpp", | 1018 "dom/NthIndexCacheTest.cpp", |
| 1018 "dom/RangeTest.cpp", | 1019 "dom/RangeTest.cpp", |
| 1019 "dom/ScriptRunnerTest.cpp", | 1020 "dom/ScriptRunnerTest.cpp", |
| 1020 "dom/SelectorQueryTest.cpp", | 1021 "dom/SelectorQueryTest.cpp", |
| 1021 "dom/StaticRangeTest.cpp", | 1022 "dom/StaticRangeTest.cpp", |
| 1022 "dom/StyleElementTest.cpp", | 1023 "dom/StyleElementTest.cpp", |
| 1023 "dom/StyleEngineTest.cpp", | 1024 "dom/StyleEngineTest.cpp", |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1260 sources = [ | 1261 sources = [ |
| 1261 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1262 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1262 "html/parser/TextResourceDecoderForFuzzing.h", | 1263 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1263 ] | 1264 ] |
| 1264 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1265 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1265 deps = [ | 1266 deps = [ |
| 1266 ":core", | 1267 ":core", |
| 1267 "../platform:blink_fuzzer_test_support", | 1268 "../platform:blink_fuzzer_test_support", |
| 1268 ] | 1269 ] |
| 1269 } | 1270 } |
| OLD | NEW |