You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
767 B

package {
// See: http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// all of the 'license_kinds' from "external_f2fs-tools_license"
// to get the below license kinds:
// SPDX-license-identifier-GPL
// SPDX-license-identifier-GPL-2.0
// SPDX-license-identifier-LGPL
// SPDX-license-identifier-LGPL-2.1
default_applicable_licenses: ["external_f2fs-tools_license"],
}
cc_defaults {
name: "f2fs-io-defaults",
cflags: [
"-Wno-unused-function"
],
include_dirs: [
"external/f2fs-tools/include/",
],
}
cc_binary {
name: "f2fs_io",
defaults: [ "f2fs-io-defaults" ],
srcs: [
"f2fs_io.c",
],
product_specific: true,
}