| 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 1229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1240 "style/FilterOperationsTest.cpp", | 1240 "style/FilterOperationsTest.cpp", |
| 1241 "style/OutlineValueTest.cpp", | 1241 "style/OutlineValueTest.cpp", |
| 1242 "style/SVGComputedStyleTest.cpp", | 1242 "style/SVGComputedStyleTest.cpp", |
| 1243 "svg/SVGPathParserTest.cpp", | 1243 "svg/SVGPathParserTest.cpp", |
| 1244 "svg/UnsafeSVGAttributeSanitizationTest.cpp", | 1244 "svg/UnsafeSVGAttributeSanitizationTest.cpp", |
| 1245 "svg/graphics/SVGImageTest.cpp", | 1245 "svg/graphics/SVGImageTest.cpp", |
| 1246 "testing/PrivateScriptTestTest.cpp", | 1246 "testing/PrivateScriptTestTest.cpp", |
| 1247 "timing/MemoryInfoTest.cpp", | 1247 "timing/MemoryInfoTest.cpp", |
| 1248 "timing/PerformanceBaseTest.cpp", | 1248 "timing/PerformanceBaseTest.cpp", |
| 1249 "timing/PerformanceObserverTest.cpp", | 1249 "timing/PerformanceObserverTest.cpp", |
| 1250 "timing/PerformanceResourceTimingTest.cpp", |
| 1250 "timing/PerformanceTest.cpp", | 1251 "timing/PerformanceTest.cpp", |
| 1251 "workers/DedicatedWorkerTest.cpp", | 1252 "workers/DedicatedWorkerTest.cpp", |
| 1252 "workers/WorkerThreadTest.cpp", | 1253 "workers/WorkerThreadTest.cpp", |
| 1253 "workers/WorkerThreadTestHelper.h", | 1254 "workers/WorkerThreadTestHelper.h", |
| 1254 "xml/parser/SharedBufferReaderTest.cpp", | 1255 "xml/parser/SharedBufferReaderTest.cpp", |
| 1255 ] | 1256 ] |
| 1256 | 1257 |
| 1257 configs += [ | 1258 configs += [ |
| 1258 "//third_party/WebKit/Source:config", | 1259 "//third_party/WebKit/Source:config", |
| 1259 "//third_party/WebKit/Source:inside_blink", | 1260 "//third_party/WebKit/Source:inside_blink", |
| (...skipping 24 matching lines...) Expand all 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 |