| Index: content/test/BUILD.gn
|
| diff --git a/content/test/BUILD.gn b/content/test/BUILD.gn
|
| index ae506ff1ee6c57599d2bf18da822d056a9adf9d2..6fa4380bf642ad5a0ab90ae7d11c6afdedcf66ee 100644
|
| --- a/content/test/BUILD.gn
|
| +++ b/content/test/BUILD.gn
|
| @@ -9,6 +9,7 @@ import("//build/config/features.gni")
|
| import("//build/config/ui.gni")
|
| import("//build_overrides/v8.gni")
|
| import("//mojo/public/tools/bindings/mojom.gni")
|
| +import("//testing/libfuzzer/fuzzer_test.gni")
|
| import("//testing/test.gni")
|
|
|
| content_tests_gypi_values =
|
| @@ -903,3 +904,13 @@ test("content_perftests") {
|
| deps += [ "//testing/android/native_test:native_test_native_code" ]
|
| }
|
| }
|
| +
|
| +fuzzer_test("renderer_fuzzer") {
|
| + sources = [
|
| + "renderer_fuzzer.cc",
|
| + ]
|
| + deps = [
|
| + ":test_support",
|
| + "//content/shell:content_shell_lib",
|
| + ]
|
| +}
|
|
|