| 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 1201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1212 "layout/LayoutThemeTest.cpp", | 1212 "layout/LayoutThemeTest.cpp", |
| 1213 "layout/MapCoordinatesTest.cpp", | 1213 "layout/MapCoordinatesTest.cpp", |
| 1214 "layout/MultiColumnFragmentainerGroupTest.cpp", | 1214 "layout/MultiColumnFragmentainerGroupTest.cpp", |
| 1215 "layout/OverflowModelTest.cpp", | 1215 "layout/OverflowModelTest.cpp", |
| 1216 "layout/PaginationTest.cpp", | 1216 "layout/PaginationTest.cpp", |
| 1217 "layout/PaintContainmentTest.cpp", | 1217 "layout/PaintContainmentTest.cpp", |
| 1218 "layout/ScrollAnchorTest.cpp", | 1218 "layout/ScrollAnchorTest.cpp", |
| 1219 "layout/TextAutosizerTest.cpp", | 1219 "layout/TextAutosizerTest.cpp", |
| 1220 "layout/VisualRectMappingTest.cpp", | 1220 "layout/VisualRectMappingTest.cpp", |
| 1221 "layout/compositing/CompositedLayerMappingTest.cpp", | 1221 "layout/compositing/CompositedLayerMappingTest.cpp", |
| 1222 "layout/compositing/CompositingReasonFinderTest.cpp", |
| 1222 "layout/ng/ng_block_layout_algorithm_test.cc", | 1223 "layout/ng/ng_block_layout_algorithm_test.cc", |
| 1223 "layout/ng/ng_constraint_space_test.cc", | 1224 "layout/ng/ng_constraint_space_test.cc", |
| 1224 "layout/ng/ng_length_utils_test.cc", | 1225 "layout/ng/ng_length_utils_test.cc", |
| 1225 "layout/ng/ng_units_test.cc", | 1226 "layout/ng/ng_units_test.cc", |
| 1226 "layout/shapes/BoxShapeTest.cpp", | 1227 "layout/shapes/BoxShapeTest.cpp", |
| 1227 "layout/svg/LayoutSVGRootTest.cpp", | 1228 "layout/svg/LayoutSVGRootTest.cpp", |
| 1228 "loader/DocumentLoadTimingTest.cpp", | 1229 "loader/DocumentLoadTimingTest.cpp", |
| 1229 "loader/FrameFetchContextTest.cpp", | 1230 "loader/FrameFetchContextTest.cpp", |
| 1230 "loader/LinkLoaderTest.cpp", | 1231 "loader/LinkLoaderTest.cpp", |
| 1231 "loader/MixedContentCheckerTest.cpp", | 1232 "loader/MixedContentCheckerTest.cpp", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1314 sources = [ | 1315 sources = [ |
| 1315 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1316 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1316 "html/parser/TextResourceDecoderForFuzzing.h", | 1317 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1317 ] | 1318 ] |
| 1318 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1319 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1319 deps = [ | 1320 deps = [ |
| 1320 ":core", | 1321 ":core", |
| 1321 "../platform:blink_fuzzer_test_support", | 1322 "../platform:blink_fuzzer_test_support", |
| 1322 ] | 1323 ] |
| 1323 } | 1324 } |
| OLD | NEW |