| 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 1027 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1038 "editing/EditingTestBase.h", | 1038 "editing/EditingTestBase.h", |
| 1039 "editing/EditingUtilitiesTest.cpp", | 1039 "editing/EditingUtilitiesTest.cpp", |
| 1040 "editing/EditorTest.cpp", | 1040 "editing/EditorTest.cpp", |
| 1041 "editing/EphemeralRangeTest.cpp", | 1041 "editing/EphemeralRangeTest.cpp", |
| 1042 "editing/FrameSelectionTest.cpp", | 1042 "editing/FrameSelectionTest.cpp", |
| 1043 "editing/GranularityStrategyTest.cpp", | 1043 "editing/GranularityStrategyTest.cpp", |
| 1044 "editing/InputMethodControllerTest.cpp", | 1044 "editing/InputMethodControllerTest.cpp", |
| 1045 "editing/PositionTest.cpp", | 1045 "editing/PositionTest.cpp", |
| 1046 "editing/RelocatablePositionTest.cpp", | 1046 "editing/RelocatablePositionTest.cpp", |
| 1047 "editing/SelectionAdjusterTest.cpp", | 1047 "editing/SelectionAdjusterTest.cpp", |
| 1048 "editing/SelectionTest.cpp", |
| 1048 "editing/SurroundingTextTest.cpp", | 1049 "editing/SurroundingTextTest.cpp", |
| 1049 "editing/VisiblePositionTest.cpp", | 1050 "editing/VisiblePositionTest.cpp", |
| 1050 "editing/VisibleSelectionTest.cpp", | 1051 "editing/VisibleSelectionTest.cpp", |
| 1051 "editing/VisibleUnitsTest.cpp", | 1052 "editing/VisibleUnitsTest.cpp", |
| 1052 "editing/commands/InsertListCommandTest.cpp", | 1053 "editing/commands/InsertListCommandTest.cpp", |
| 1053 "editing/commands/ReplaceSelectionCommandTest.cpp", | 1054 "editing/commands/ReplaceSelectionCommandTest.cpp", |
| 1054 "editing/iterators/BackwardsTextBufferTest.cpp", | 1055 "editing/iterators/BackwardsTextBufferTest.cpp", |
| 1055 "editing/iterators/CharacterIteratorTest.cpp", | 1056 "editing/iterators/CharacterIteratorTest.cpp", |
| 1056 "editing/iterators/ForwardsTextBufferTest.cpp", | 1057 "editing/iterators/ForwardsTextBufferTest.cpp", |
| 1057 "editing/iterators/SearchBufferTest.cpp", | 1058 "editing/iterators/SearchBufferTest.cpp", |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1255 sources = [ | 1256 sources = [ |
| 1256 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1257 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1257 "html/parser/TextResourceDecoderForFuzzing.h", | 1258 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1258 ] | 1259 ] |
| 1259 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1260 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1260 deps = [ | 1261 deps = [ |
| 1261 ":core", | 1262 ":core", |
| 1262 "../platform:blink_fuzzer_test_support", | 1263 "../platform:blink_fuzzer_test_support", |
| 1263 ] | 1264 ] |
| 1264 } | 1265 } |
| OLD | NEW |