| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/libfuzzer/fuzzer_test.gni") | 6 import("//testing/libfuzzer/fuzzer_test.gni") |
| 7 | 7 |
| 8 component("util") { | 8 component("util") { |
| 9 output_name = "display_util" | 9 output_name = "display_util" |
| 10 sources = [ | 10 sources = [ |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 deps += [ "//ui/display/types" ] | 38 deps += [ "//ui/display/types" ] |
| 39 } | 39 } |
| 40 } | 40 } |
| 41 | 41 |
| 42 fuzzer_test("edid_parser_fuzzer") { | 42 fuzzer_test("edid_parser_fuzzer") { |
| 43 sources = [ | 43 sources = [ |
| 44 "edid_parser_fuzzer.cc", | 44 "edid_parser_fuzzer.cc", |
| 45 ] | 45 ] |
| 46 deps = [ | 46 deps = [ |
| 47 ":util", | 47 ":util", |
| 48 "//base", |
| 48 "//ui/gfx/geometry", | 49 "//ui/gfx/geometry", |
| 49 ] | 50 ] |
| 50 seed_corpus = "fuzz_corpus" | 51 seed_corpus = "fuzz_corpus" |
| 51 libfuzzer_options = [ "max_len=300" ] | 52 libfuzzer_options = [ "max_len=300" ] |
| 52 } | 53 } |
| OLD | NEW |