| 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 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1071 "dom/AttrTest.cpp", | 1071 "dom/AttrTest.cpp", |
| 1072 "dom/CSSSelectorWatchTest.cpp", | 1072 "dom/CSSSelectorWatchTest.cpp", |
| 1073 "dom/DOMImplementationTest.cpp", | 1073 "dom/DOMImplementationTest.cpp", |
| 1074 "dom/DOMMatrixTest.cpp", | 1074 "dom/DOMMatrixTest.cpp", |
| 1075 "dom/DocumentStatisticsCollectorTest.cpp", | 1075 "dom/DocumentStatisticsCollectorTest.cpp", |
| 1076 "dom/DocumentTest.cpp", | 1076 "dom/DocumentTest.cpp", |
| 1077 "dom/DocumentUserGestureTokenTest.cpp", | 1077 "dom/DocumentUserGestureTokenTest.cpp", |
| 1078 "dom/ElementTest.cpp", | 1078 "dom/ElementTest.cpp", |
| 1079 "dom/ElementVisibilityObserverTest.cpp", | 1079 "dom/ElementVisibilityObserverTest.cpp", |
| 1080 "dom/ExecutionContextTaskTest.cpp", | 1080 "dom/ExecutionContextTaskTest.cpp", |
| 1081 "dom/LayoutTreeBuilderTraversalTest.cpp", |
| 1081 "dom/MainThreadTaskRunnerTest.cpp", | 1082 "dom/MainThreadTaskRunnerTest.cpp", |
| 1082 "dom/NodeTest.cpp", | 1083 "dom/NodeTest.cpp", |
| 1083 "dom/NthIndexCacheTest.cpp", | 1084 "dom/NthIndexCacheTest.cpp", |
| 1084 "dom/RangeTest.cpp", | 1085 "dom/RangeTest.cpp", |
| 1085 "dom/ScriptRunnerTest.cpp", | 1086 "dom/ScriptRunnerTest.cpp", |
| 1086 "dom/SelectorQueryTest.cpp", | 1087 "dom/SelectorQueryTest.cpp", |
| 1087 "dom/StaticRangeTest.cpp", | 1088 "dom/StaticRangeTest.cpp", |
| 1088 "dom/StyleElementTest.cpp", | 1089 "dom/StyleElementTest.cpp", |
| 1089 "dom/StyleEngineTest.cpp", | 1090 "dom/StyleEngineTest.cpp", |
| 1090 "dom/TextTest.cpp", | 1091 "dom/TextTest.cpp", |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1339 sources = [ | 1340 sources = [ |
| 1340 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1341 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1341 "html/parser/TextResourceDecoderForFuzzing.h", | 1342 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1342 ] | 1343 ] |
| 1343 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1344 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1344 deps = [ | 1345 deps = [ |
| 1345 ":core", | 1346 ":core", |
| 1346 "../platform:blink_fuzzer_test_support", | 1347 "../platform:blink_fuzzer_test_support", |
| 1347 ] | 1348 ] |
| 1348 } | 1349 } |
| OLD | NEW |