| 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 "//third_party/WebKit/Source/core/fetch", | 154 "//third_party/WebKit/Source/core/fetch", |
| 155 "//third_party/WebKit/Source/core/fileapi", | 155 "//third_party/WebKit/Source/core/fileapi", |
| 156 "//third_party/WebKit/Source/core/frame", | 156 "//third_party/WebKit/Source/core/frame", |
| 157 "//third_party/WebKit/Source/core/html", | 157 "//third_party/WebKit/Source/core/html", |
| 158 "//third_party/WebKit/Source/core/imagebitmap", | 158 "//third_party/WebKit/Source/core/imagebitmap", |
| 159 "//third_party/WebKit/Source/core/input", | 159 "//third_party/WebKit/Source/core/input", |
| 160 "//third_party/WebKit/Source/core/inspector", | 160 "//third_party/WebKit/Source/core/inspector", |
| 161 "//third_party/WebKit/Source/core/layout", | 161 "//third_party/WebKit/Source/core/layout", |
| 162 "//third_party/WebKit/Source/core/layout/svg", | 162 "//third_party/WebKit/Source/core/layout/svg", |
| 163 "//third_party/WebKit/Source/core/loader", | 163 "//third_party/WebKit/Source/core/loader", |
| 164 "//third_party/WebKit/Source/core/mojo", |
| 164 "//third_party/WebKit/Source/core/observer", | 165 "//third_party/WebKit/Source/core/observer", |
| 165 "//third_party/WebKit/Source/core/offscreencanvas", | 166 "//third_party/WebKit/Source/core/offscreencanvas", |
| 166 "//third_party/WebKit/Source/core/origin_trials", | 167 "//third_party/WebKit/Source/core/origin_trials", |
| 167 "//third_party/WebKit/Source/core/page", | 168 "//third_party/WebKit/Source/core/page", |
| 168 "//third_party/WebKit/Source/core/paint", | 169 "//third_party/WebKit/Source/core/paint", |
| 169 "//third_party/WebKit/Source/core/plugins", | 170 "//third_party/WebKit/Source/core/plugins", |
| 170 "//third_party/WebKit/Source/core/streams", | 171 "//third_party/WebKit/Source/core/streams", |
| 171 "//third_party/WebKit/Source/core/style:rendering", | 172 "//third_party/WebKit/Source/core/style:rendering", |
| 172 "//third_party/WebKit/Source/core/style:svg", | 173 "//third_party/WebKit/Source/core/style:svg", |
| 173 "//third_party/WebKit/Source/core/svg", | 174 "//third_party/WebKit/Source/core/svg", |
| (...skipping 1081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1255 sources = [ | 1256 sources = [ |
| 1256 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1257 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1257 "html/parser/TextResourceDecoderForFuzzing.h", | 1258 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1258 ] | 1259 ] |
| 1259 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1260 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1260 deps = [ | 1261 deps = [ |
| 1261 ":core", | 1262 ":core", |
| 1262 "../platform:blink_fuzzer_test_support", | 1263 "../platform:blink_fuzzer_test_support", |
| 1263 ] | 1264 ] |
| 1264 } | 1265 } |
| OLD | NEW |