| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//testing/libfuzzer/fuzzer_test.gni") | |
| 6 | |
| 7 source_set("mac") { | |
| 8 sources = [ | |
| 9 "dmg_analyzer.cc", | |
| 10 "dmg_analyzer.h", | |
| 11 "dmg_iterator.cc", | |
| 12 "dmg_iterator.h", | |
| 13 ] | |
| 14 | |
| 15 deps = [ | |
| 16 ":dmg_common", | |
| 17 "//base", | |
| 18 "//chrome/common", | |
| 19 "//chrome/common/safe_browsing:proto", | |
| 20 ] | |
| 21 } | |
| 22 | |
| 23 config("dmg_public_config") { | |
| 24 libs = [ | |
| 25 "bz2", | |
| 26 "CoreFoundation.framework", | |
| 27 ] | |
| 28 } | |
| 29 | |
| 30 source_set("dmg_common") { | |
| 31 visibility = [ ":*" ] | |
| 32 | |
| 33 sources = [ | |
| 34 "convert_big_endian.h", | |
| 35 "hfs.cc", | |
| 36 "hfs.h", | |
| 37 "read_stream.cc", | |
| 38 "read_stream.h", | |
| 39 "udif.cc", | |
| 40 "udif.h", | |
| 41 ] | |
| 42 | |
| 43 deps = [ | |
| 44 "//base", | |
| 45 "//third_party/zlib", | |
| 46 ] | |
| 47 | |
| 48 public_configs = [ ":dmg_public_config" ] | |
| 49 } | |
| 50 | |
| 51 executable("crdmg") { | |
| 52 sources = [ | |
| 53 "crdmg.cc", | |
| 54 ] | |
| 55 | |
| 56 deps = [ | |
| 57 ":dmg_common", | |
| 58 "//base", | |
| 59 ] | |
| 60 } | |
| 61 | |
| 62 fuzzer_test("safe_browsing_dmg_fuzzer") { | |
| 63 sources = [ | |
| 64 "fuzzer.cc", | |
| 65 ] | |
| 66 | |
| 67 deps = [ | |
| 68 ":dmg_common", | |
| 69 ] | |
| 70 } | |
| OLD | NEW |