Chromium Code Reviews| 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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/wtf", |
| 210 "//third_party/WebKit/public:blink_headers", | |
|
kinuko
2017/06/22 23:40:36
I see, for forwarding deps...
I think adding "thi
shaseley
2017/06/23 00:08:39
Yes, the build issues turned out to be any targets
| |
| 210 "//v8", | 211 "//v8", |
| 211 ] | 212 ] |
| 212 } | 213 } |
| 213 | 214 |
| 214 fuzzer_test("v8_serialized_script_value_fuzzer") { | 215 fuzzer_test("v8_serialized_script_value_fuzzer") { |
| 215 sources = [ | 216 sources = [ |
| 216 "serialization/SerializedScriptValueFuzzer.cpp", | 217 "serialization/SerializedScriptValueFuzzer.cpp", |
| 217 ] | 218 ] |
| 218 seed_corpus = "serialization/fuzz_corpus" | 219 seed_corpus = "serialization/fuzz_corpus" |
| 219 deps = [ | 220 deps = [ |
| 220 "//third_party/WebKit/Source/core", | 221 "//third_party/WebKit/Source/core", |
| 221 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 222 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 222 ] | 223 ] |
| 223 } | 224 } |
| OLD | NEW |