| 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/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build/split_static_library.gni") | 7 import("//build/split_static_library.gni") |
| 8 import("//testing/libfuzzer/fuzzer_test.gni") | 8 import("//testing/libfuzzer/fuzzer_test.gni") |
| 9 import("//third_party/WebKit/Source/bindings/bindings.gni") | 9 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
| (...skipping 975 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 986 "css/parser/SizesCalcParserTest.cpp", | 986 "css/parser/SizesCalcParserTest.cpp", |
| 987 "css/resolver/FontBuilderTest.cpp", | 987 "css/resolver/FontBuilderTest.cpp", |
| 988 "css/resolver/MatchResultTest.cpp", | 988 "css/resolver/MatchResultTest.cpp", |
| 989 "css/resolver/SharedStyleFinderTest.cpp", | 989 "css/resolver/SharedStyleFinderTest.cpp", |
| 990 "dom/ActiveDOMObjectTest.cpp", | 990 "dom/ActiveDOMObjectTest.cpp", |
| 991 "dom/AttrTest.cpp", | 991 "dom/AttrTest.cpp", |
| 992 "dom/CSSSelectorWatchTest.cpp", | 992 "dom/CSSSelectorWatchTest.cpp", |
| 993 "dom/DOMImplementationTest.cpp", | 993 "dom/DOMImplementationTest.cpp", |
| 994 "dom/DocumentStatisticsCollectorTest.cpp", | 994 "dom/DocumentStatisticsCollectorTest.cpp", |
| 995 "dom/DocumentTest.cpp", | 995 "dom/DocumentTest.cpp", |
| 996 "dom/ElementRareDataTest.cpp", |
| 996 "dom/ElementTest.cpp", | 997 "dom/ElementTest.cpp", |
| 997 "dom/ExecutionContextTaskTest.cpp", | 998 "dom/ExecutionContextTaskTest.cpp", |
| 998 "dom/MainThreadTaskRunnerTest.cpp", | 999 "dom/MainThreadTaskRunnerTest.cpp", |
| 999 "dom/NodeTest.cpp", | 1000 "dom/NodeTest.cpp", |
| 1000 "dom/NthIndexCacheTest.cpp", | 1001 "dom/NthIndexCacheTest.cpp", |
| 1001 "dom/RangeTest.cpp", | 1002 "dom/RangeTest.cpp", |
| 1002 "dom/ScriptRunnerTest.cpp", | 1003 "dom/ScriptRunnerTest.cpp", |
| 1003 "dom/SelectorQueryTest.cpp", | 1004 "dom/SelectorQueryTest.cpp", |
| 1004 "dom/StaticRangeTest.cpp", | 1005 "dom/StaticRangeTest.cpp", |
| 1005 "dom/StyleElementTest.cpp", | 1006 "dom/StyleElementTest.cpp", |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1235 sources = [ | 1236 sources = [ |
| 1236 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1237 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1237 "html/parser/TextResourceDecoderForFuzzing.h", | 1238 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1238 ] | 1239 ] |
| 1239 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1240 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1240 deps = [ | 1241 deps = [ |
| 1241 ":core", | 1242 ":core", |
| 1242 "../platform:blink_fuzzer_test_support", | 1243 "../platform:blink_fuzzer_test_support", |
| 1243 ] | 1244 ] |
| 1244 } | 1245 } |
| OLD | NEW |