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("//testing/libfuzzer/fuzzer_test.gni") |
5 import("//third_party/WebKit/Source/bindings/bindings.gni") | 6 import("//third_party/WebKit/Source/bindings/bindings.gni") |
6 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") | 7 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") |
7 import("//third_party/WebKit/Source/core/core.gni") | 8 import("//third_party/WebKit/Source/core/core.gni") |
8 import("//third_party/WebKit/Source/core/core_idl_files.gni") | 9 import("//third_party/WebKit/Source/core/core_idl_files.gni") |
9 | 10 |
10 visibility = [ "//third_party/WebKit/Source/*" ] | 11 visibility = [ "//third_party/WebKit/Source/*" ] |
11 | 12 |
12 generated_core_dictionary_files = [ | 13 generated_core_dictionary_files = [ |
13 "$blink_core_output_dir/animation/AnimationEffectTimingProperties.cpp", | 14 "$blink_core_output_dir/animation/AnimationEffectTimingProperties.cpp", |
14 "$blink_core_output_dir/animation/AnimationEffectTimingProperties.h", | 15 "$blink_core_output_dir/animation/AnimationEffectTimingProperties.h", |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 "//third_party/WebKit/Source:config", | 297 "//third_party/WebKit/Source:config", |
297 ] | 298 ] |
298 | 299 |
299 deps = [ | 300 deps = [ |
300 ":bindings_core_impl_generated", | 301 ":bindings_core_impl_generated", |
301 "//skia", | 302 "//skia", |
302 "//third_party/WebKit/Source/wtf", | 303 "//third_party/WebKit/Source/wtf", |
303 "//v8", | 304 "//v8", |
304 ] | 305 ] |
305 } | 306 } |
| 307 |
| 308 fuzzer_test("v8_serialized_script_value_fuzzer") { |
| 309 sources = [ |
| 310 "serialization/SerializedScriptValueFuzzer.cpp", |
| 311 ] |
| 312 seed_corpus = "serialization/fuzz_corpus" |
| 313 deps = [ |
| 314 "//third_party/WebKit/Source/core", |
| 315 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 316 ] |
| 317 } |
OLD | NEW |