| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 | 6 |
| 7 source_set("mac") { | 7 source_set("mac") { |
| 8 sources = [ | 8 sources = [ |
| 9 "dmg_analyzer.cc", | 9 "dmg_analyzer.cc", |
| 10 "dmg_analyzer.h", | 10 "dmg_analyzer.h", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 62 |
| 63 fuzzer_test("safe_browsing_dmg_fuzzer") { | 63 fuzzer_test("safe_browsing_dmg_fuzzer") { |
| 64 sources = [ | 64 sources = [ |
| 65 "fuzzer.cc", | 65 "fuzzer.cc", |
| 66 ] | 66 ] |
| 67 | 67 |
| 68 deps = [ | 68 deps = [ |
| 69 ":dmg_common", | 69 ":dmg_common", |
| 70 "//base", | 70 "//base", |
| 71 ] | 71 ] |
| 72 |
| 73 libfuzzer_options = [ "close_fd_mask=2" ] |
| 72 } | 74 } |
| OLD | NEW |