Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(843)

Side by Side Diff: ui/display/util/BUILD.gn

Issue 2294733002: Set log level to logging::LOG_FATAL for edid_parser_fuzzer. (Closed)
Patch Set: Add "//base" to deps to avoid linker failure on debug build. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ui/display/util/edid_parser_fuzzer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | ui/display/util/edid_parser_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698