Bob Badour | 0d1c96b | 2021-02-12 17:19:13 -0800 | [diff] [blame] | 1 | package { |
| 2 | // See: http://go/android-license-faq |
| 3 | // A large-scale-change added 'default_applicable_licenses' to import |
| 4 | // all of the 'license_kinds' from "external_gptfdisk_license" |
| 5 | // to get the below license kinds: |
| 6 | // SPDX-license-identifier-GPL-2.0 |
| 7 | default_applicable_licenses: ["external_gptfdisk_license"], |
| 8 | } |
| 9 | |
Jeff Sharkey | 83fdc99 | 2020-10-13 19:50:30 -0600 | [diff] [blame] | 10 | cc_fuzz { |
| 11 | name: "libgptf_fuzzer", |
| 12 | srcs: ["libgptf_fuzzer.cc"], |
| 13 | cflags: ["-DENABLE_HEAP_DISKIO"], |
| 14 | host_supported: true, |
| 15 | corpus: ["corpus/*"], |
| 16 | static_libs: ["libgmock"], |
| 17 | target: { |
| 18 | android: { |
| 19 | static_libs: [ |
| 20 | "libgptf_fuzzer_lib", |
| 21 | "libext2_uuid", |
| 22 | ], |
| 23 | }, |
| 24 | host: { |
| 25 | static_libs: [ |
| 26 | "libgptf_fuzzer_lib", |
| 27 | "libext2_uuid", |
| 28 | ], |
| 29 | }, |
| 30 | }, |
| 31 | } |