| # Copyright 2019 The Fuchsia Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import("//build/fuzzing/fuzzer.gni") |
| import("//build/package.gni") |
| |
| fuzzer("frame-scheduler-fuzzer") { |
| sources = [ "frame_scheduler_fuzztest.cc" ] |
| deps = [ |
| "//src/ui/scenic/lib/scheduling:frame_scheduler", |
| "//src/ui/scenic/lib/scheduling/tests/mocks:frame_scheduler_mocks", |
| ] |
| } |
| |
| fuzzers_package("fuzzers") { |
| package_name = "frame-scheduling-fuzzers" |
| fuzzers = [ ":frame-scheduler-fuzzer" ] |
| } |