| 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 ]) | 256 ]) |
| 257 } | 257 } |
| 258 | 258 |
| 259 # core_bindings_generated ------------------------------------------------------ | 259 # core_bindings_generated ------------------------------------------------------ |
| 260 | 260 |
| 261 generate_event_interfaces("core_event_interfaces") { | 261 generate_event_interfaces("core_event_interfaces") { |
| 262 sources = [ | 262 sources = [ |
| 263 "css/FontFaceSetLoadEvent.idl", | 263 "css/FontFaceSetLoadEvent.idl", |
| 264 "css/MediaQueryListEvent.idl", | 264 "css/MediaQueryListEvent.idl", |
| 265 "events/AnimationEvent.idl", | 265 "events/AnimationEvent.idl", |
| 266 "events/AnimationPlayerEvent.idl", | 266 "events/AnimationPlaybackEvent.idl", |
| 267 "events/ApplicationCacheErrorEvent.idl", | 267 "events/ApplicationCacheErrorEvent.idl", |
| 268 "events/BeforeUnloadEvent.idl", | 268 "events/BeforeUnloadEvent.idl", |
| 269 "events/ClipboardEvent.idl", | 269 "events/ClipboardEvent.idl", |
| 270 "events/CompositionEvent.idl", | 270 "events/CompositionEvent.idl", |
| 271 "events/CustomEvent.idl", | 271 "events/CustomEvent.idl", |
| 272 "events/DragEvent.idl", | 272 "events/DragEvent.idl", |
| 273 "events/ErrorEvent.idl", | 273 "events/ErrorEvent.idl", |
| 274 "events/Event.idl", | 274 "events/Event.idl", |
| 275 "events/FocusEvent.idl", | 275 "events/FocusEvent.idl", |
| 276 "events/HashChangeEvent.idl", | 276 "events/HashChangeEvent.idl", |
| (...skipping 958 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1235 sources = [ | 1235 sources = [ |
| 1236 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1236 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1237 "html/parser/TextResourceDecoderForFuzzing.h", | 1237 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1238 ] | 1238 ] |
| 1239 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1239 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1240 deps = [ | 1240 deps = [ |
| 1241 ":core", | 1241 ":core", |
| 1242 "../platform:blink_fuzzer_test_support", | 1242 "../platform:blink_fuzzer_test_support", |
| 1243 ] | 1243 ] |
| 1244 } | 1244 } |
| OLD | NEW |