| 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 1187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1198 "style/ComputedStyleTest.cpp", | 1198 "style/ComputedStyleTest.cpp", |
| 1199 "style/OutlineValueTest.cpp", | 1199 "style/OutlineValueTest.cpp", |
| 1200 "style/SVGComputedStyleTest.cpp", | 1200 "style/SVGComputedStyleTest.cpp", |
| 1201 "svg/SVGPathParserTest.cpp", | 1201 "svg/SVGPathParserTest.cpp", |
| 1202 "svg/UnsafeSVGAttributeSanitizationTest.cpp", | 1202 "svg/UnsafeSVGAttributeSanitizationTest.cpp", |
| 1203 "svg/graphics/SVGImageTest.cpp", | 1203 "svg/graphics/SVGImageTest.cpp", |
| 1204 "testing/PrivateScriptTestTest.cpp", | 1204 "testing/PrivateScriptTestTest.cpp", |
| 1205 "timing/MemoryInfoTest.cpp", | 1205 "timing/MemoryInfoTest.cpp", |
| 1206 "timing/PerformanceBaseTest.cpp", | 1206 "timing/PerformanceBaseTest.cpp", |
| 1207 "timing/PerformanceObserverTest.cpp", | 1207 "timing/PerformanceObserverTest.cpp", |
| 1208 "timing/PerformanceTest.cpp", |
| 1208 "workers/DedicatedWorkerTest.cpp", | 1209 "workers/DedicatedWorkerTest.cpp", |
| 1209 "workers/WorkerThreadTest.cpp", | 1210 "workers/WorkerThreadTest.cpp", |
| 1210 "workers/WorkerThreadTestHelper.h", | 1211 "workers/WorkerThreadTestHelper.h", |
| 1211 "xml/parser/SharedBufferReaderTest.cpp", | 1212 "xml/parser/SharedBufferReaderTest.cpp", |
| 1212 ] | 1213 ] |
| 1213 | 1214 |
| 1214 configs += [ | 1215 configs += [ |
| 1215 "//third_party/WebKit/Source:config", | 1216 "//third_party/WebKit/Source:config", |
| 1216 "//third_party/WebKit/Source:inside_blink", | 1217 "//third_party/WebKit/Source:inside_blink", |
| 1217 ] | 1218 ] |
| (...skipping 23 matching lines...) Expand all Loading... |
| 1241 sources = [ | 1242 sources = [ |
| 1242 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1243 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1243 "html/parser/TextResourceDecoderForFuzzing.h", | 1244 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1244 ] | 1245 ] |
| 1245 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1246 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1246 deps = [ | 1247 deps = [ |
| 1247 ":core", | 1248 ":core", |
| 1248 "../platform:blink_fuzzer_test_support", | 1249 "../platform:blink_fuzzer_test_support", |
| 1249 ] | 1250 ] |
| 1250 } | 1251 } |
| OLD | NEW |