1package { 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 "packages_modules_ExtServices_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-Apache-2.0 7 default_applicable_licenses: ["packages_modules_ExtServices_license"], 8} 9 10cc_fuzz { 11 name: "libPHashFuzzer", 12 srcs: [ 13 "fuzzed_phash_fingerprinter.cpp", 14 ], 15 static_libs: [ 16 "libextservices", 17 "libfft2d", 18 ], 19 apex_available: [ 20 "//apex_available:platform", 21 "com.android.extservices", 22 ], 23 fuzz_config: { 24 cc: ["chaviw@google.com", "wanggang@google.com"], 25 26 // The ID for 27 // Android > Android OS & Apps > Framework (java + native) > SmartOS > ExtServices 28 componentid: 959583, 29 }, 30 corpus: [ 31 "corpus/*.raw" 32 ], 33} 34