| 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 1260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1271 "svg/UnsafeSVGAttributeSanitizationTest.cpp", | 1271 "svg/UnsafeSVGAttributeSanitizationTest.cpp", |
| 1272 "svg/graphics/SVGImageTest.cpp", | 1272 "svg/graphics/SVGImageTest.cpp", |
| 1273 "testing/PrivateScriptTestTest.cpp", | 1273 "testing/PrivateScriptTestTest.cpp", |
| 1274 "timing/MemoryInfoTest.cpp", | 1274 "timing/MemoryInfoTest.cpp", |
| 1275 "timing/PerformanceBaseTest.cpp", | 1275 "timing/PerformanceBaseTest.cpp", |
| 1276 "timing/PerformanceObserverTest.cpp", | 1276 "timing/PerformanceObserverTest.cpp", |
| 1277 "timing/PerformanceTest.cpp", | 1277 "timing/PerformanceTest.cpp", |
| 1278 "workers/DedicatedWorkerTest.cpp", | 1278 "workers/DedicatedWorkerTest.cpp", |
| 1279 "workers/WorkerThreadTest.cpp", | 1279 "workers/WorkerThreadTest.cpp", |
| 1280 "workers/WorkerThreadTestHelper.h", | 1280 "workers/WorkerThreadTestHelper.h", |
| 1281 "xml/XPathFunctionsTest.cpp", |
| 1281 "xml/parser/SharedBufferReaderTest.cpp", | 1282 "xml/parser/SharedBufferReaderTest.cpp", |
| 1282 ] | 1283 ] |
| 1283 | 1284 |
| 1284 configs += [ | 1285 configs += [ |
| 1285 "//third_party/WebKit/Source:config", | 1286 "//third_party/WebKit/Source:config", |
| 1286 "//third_party/WebKit/Source:inside_blink", | 1287 "//third_party/WebKit/Source:inside_blink", |
| 1287 ] | 1288 ] |
| 1288 | 1289 |
| 1289 deps = [ | 1290 deps = [ |
| 1290 ":core", | 1291 ":core", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 1311 sources = [ | 1312 sources = [ |
| 1312 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1313 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1313 "html/parser/TextResourceDecoderForFuzzing.h", | 1314 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1314 ] | 1315 ] |
| 1315 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1316 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1316 deps = [ | 1317 deps = [ |
| 1317 ":core", | 1318 ":core", |
| 1318 "../platform:blink_fuzzer_test_support", | 1319 "../platform:blink_fuzzer_test_support", |
| 1319 ] | 1320 ] |
| 1320 } | 1321 } |
| OLD | NEW |