| 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 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1246 "svg/UnsafeSVGAttributeSanitizationTest.cpp", | 1246 "svg/UnsafeSVGAttributeSanitizationTest.cpp", |
| 1247 "svg/graphics/SVGImageTest.cpp", | 1247 "svg/graphics/SVGImageTest.cpp", |
| 1248 "testing/PrivateScriptTestTest.cpp", | 1248 "testing/PrivateScriptTestTest.cpp", |
| 1249 "timing/MemoryInfoTest.cpp", | 1249 "timing/MemoryInfoTest.cpp", |
| 1250 "timing/PerformanceBaseTest.cpp", | 1250 "timing/PerformanceBaseTest.cpp", |
| 1251 "timing/PerformanceObserverTest.cpp", | 1251 "timing/PerformanceObserverTest.cpp", |
| 1252 "timing/PerformanceTest.cpp", | 1252 "timing/PerformanceTest.cpp", |
| 1253 "workers/DedicatedWorkerTest.cpp", | 1253 "workers/DedicatedWorkerTest.cpp", |
| 1254 "workers/WorkerThreadTest.cpp", | 1254 "workers/WorkerThreadTest.cpp", |
| 1255 "workers/WorkerThreadTestHelper.h", | 1255 "workers/WorkerThreadTestHelper.h", |
| 1256 "xml/XPathFunctionsTest.cpp", |
| 1256 "xml/parser/SharedBufferReaderTest.cpp", | 1257 "xml/parser/SharedBufferReaderTest.cpp", |
| 1257 ] | 1258 ] |
| 1258 | 1259 |
| 1259 configs += [ | 1260 configs += [ |
| 1260 "//third_party/WebKit/Source:config", | 1261 "//third_party/WebKit/Source:config", |
| 1261 "//third_party/WebKit/Source:inside_blink", | 1262 "//third_party/WebKit/Source:inside_blink", |
| 1262 ] | 1263 ] |
| 1263 | 1264 |
| 1264 deps = [ | 1265 deps = [ |
| 1265 ":core", | 1266 ":core", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 1286 sources = [ | 1287 sources = [ |
| 1287 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1288 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1288 "html/parser/TextResourceDecoderForFuzzing.h", | 1289 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1289 ] | 1290 ] |
| 1290 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1291 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1291 deps = [ | 1292 deps = [ |
| 1292 ":core", | 1293 ":core", |
| 1293 "../platform:blink_fuzzer_test_support", | 1294 "../platform:blink_fuzzer_test_support", |
| 1294 ] | 1295 ] |
| 1295 } | 1296 } |
| OLD | NEW |