| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 } | 49 } |
| 50 | 50 |
| 51 executable("crdmg") { | 51 executable("crdmg") { |
| 52 sources = [ | 52 sources = [ |
| 53 "crdmg.cc", | 53 "crdmg.cc", |
| 54 ] | 54 ] |
| 55 | 55 |
| 56 deps = [ | 56 deps = [ |
| 57 ":dmg_common", | 57 ":dmg_common", |
| 58 "//base", | 58 "//base", |
| 59 "//sandbox/mac:seatbelt", |
| 59 ] | 60 ] |
| 60 } | 61 } |
| 61 | 62 |
| 62 fuzzer_test("safe_browsing_dmg_fuzzer") { | 63 fuzzer_test("safe_browsing_dmg_fuzzer") { |
| 63 sources = [ | 64 sources = [ |
| 64 "fuzzer.cc", | 65 "fuzzer.cc", |
| 65 ] | 66 ] |
| 66 | 67 |
| 67 deps = [ | 68 deps = [ |
| 68 ":dmg_common", | 69 ":dmg_common", |
| 69 "//base", | 70 "//base", |
| 70 ] | 71 ] |
| 71 } | 72 } |
| OLD | NEW |