| 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 1055 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1066 "editing/EditingTestBase.h", | 1066 "editing/EditingTestBase.h", |
| 1067 "editing/EditingUtilitiesTest.cpp", | 1067 "editing/EditingUtilitiesTest.cpp", |
| 1068 "editing/EditorTest.cpp", | 1068 "editing/EditorTest.cpp", |
| 1069 "editing/EphemeralRangeTest.cpp", | 1069 "editing/EphemeralRangeTest.cpp", |
| 1070 "editing/FrameSelectionTest.cpp", | 1070 "editing/FrameSelectionTest.cpp", |
| 1071 "editing/GranularityStrategyTest.cpp", | 1071 "editing/GranularityStrategyTest.cpp", |
| 1072 "editing/InputMethodControllerTest.cpp", | 1072 "editing/InputMethodControllerTest.cpp", |
| 1073 "editing/PositionTest.cpp", | 1073 "editing/PositionTest.cpp", |
| 1074 "editing/RelocatablePositionTest.cpp", | 1074 "editing/RelocatablePositionTest.cpp", |
| 1075 "editing/SelectionAdjusterTest.cpp", | 1075 "editing/SelectionAdjusterTest.cpp", |
| 1076 "editing/SelectionTemplateTest.cpp", |
| 1076 "editing/SurroundingTextTest.cpp", | 1077 "editing/SurroundingTextTest.cpp", |
| 1077 "editing/VisiblePositionTest.cpp", | 1078 "editing/VisiblePositionTest.cpp", |
| 1078 "editing/VisibleSelectionTest.cpp", | 1079 "editing/VisibleSelectionTest.cpp", |
| 1079 "editing/VisibleUnitsTest.cpp", | 1080 "editing/VisibleUnitsTest.cpp", |
| 1080 "editing/commands/InsertListCommandTest.cpp", | 1081 "editing/commands/InsertListCommandTest.cpp", |
| 1081 "editing/commands/ReplaceSelectionCommandTest.cpp", | 1082 "editing/commands/ReplaceSelectionCommandTest.cpp", |
| 1082 "editing/iterators/BackwardsTextBufferTest.cpp", | 1083 "editing/iterators/BackwardsTextBufferTest.cpp", |
| 1083 "editing/iterators/CharacterIteratorTest.cpp", | 1084 "editing/iterators/CharacterIteratorTest.cpp", |
| 1084 "editing/iterators/ForwardsTextBufferTest.cpp", | 1085 "editing/iterators/ForwardsTextBufferTest.cpp", |
| 1085 "editing/iterators/SearchBufferTest.cpp", | 1086 "editing/iterators/SearchBufferTest.cpp", |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1284 sources = [ | 1285 sources = [ |
| 1285 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1286 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1286 "html/parser/TextResourceDecoderForFuzzing.h", | 1287 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1287 ] | 1288 ] |
| 1288 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1289 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1289 deps = [ | 1290 deps = [ |
| 1290 ":core", | 1291 ":core", |
| 1291 "../platform:blink_fuzzer_test_support", | 1292 "../platform:blink_fuzzer_test_support", |
| 1292 ] | 1293 ] |
| 1293 } | 1294 } |
| OLD | NEW |