| 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("//testing/libfuzzer/fuzzer_test.gni") |
| 6 import("//third_party/WebKit/Source/bindings/bindings.gni") | 6 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 7 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") | 7 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") |
| 8 import("//third_party/WebKit/Source/core/core.gni") | 8 import("//third_party/WebKit/Source/core/core.gni") |
| 9 import("//third_party/WebKit/Source/core/core_idl_files.gni") | 9 import("//third_party/WebKit/Source/core/core_idl_files.gni") |
| 10 | 10 |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 | 199 |
| 200 configs -= core_config_remove | 200 configs -= core_config_remove |
| 201 configs += [ | 201 configs += [ |
| 202 "//third_party/WebKit/Source:inside_blink", | 202 "//third_party/WebKit/Source:inside_blink", |
| 203 "//third_party/WebKit/Source:config", | 203 "//third_party/WebKit/Source:config", |
| 204 ] | 204 ] |
| 205 | 205 |
| 206 deps = [ | 206 deps = [ |
| 207 ":bindings_core_impl_generated", | 207 ":bindings_core_impl_generated", |
| 208 "//skia", | 208 "//skia", |
| 209 "//third_party/WebKit/Source/platform/wtf", | 209 "//third_party/WebKit/Source/platform", |
| 210 "//v8", | 210 "//v8", |
| 211 ] | 211 ] |
| 212 } | 212 } |
| 213 | 213 |
| 214 fuzzer_test("v8_serialized_script_value_fuzzer") { | 214 fuzzer_test("v8_serialized_script_value_fuzzer") { |
| 215 sources = [ | 215 sources = [ |
| 216 "serialization/SerializedScriptValueFuzzer.cpp", | 216 "serialization/SerializedScriptValueFuzzer.cpp", |
| 217 ] | 217 ] |
| 218 seed_corpus = "serialization/fuzz_corpus" | 218 seed_corpus = "serialization/fuzz_corpus" |
| 219 deps = [ | 219 deps = [ |
| 220 "//third_party/WebKit/Source/core", | 220 "//third_party/WebKit/Source/core", |
| 221 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 221 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 222 ] | 222 ] |
| 223 } | 223 } |
| OLD | NEW |