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 "external_f2fs-tools_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-GPL
7    //   SPDX-license-identifier-GPL-2.0
8    //   SPDX-license-identifier-LGPL
9    //   SPDX-license-identifier-LGPL-2.1
10    default_applicable_licenses: ["external_f2fs-tools_license"],
11}
12
13cc_defaults {
14    name: "f2fs-io-defaults",
15    cflags: [
16        "-Wno-unused-function"
17    ],
18    include_dirs: [
19       "external/f2fs-tools/include/",
20    ],
21}
22
23cc_binary {
24    name: "f2fs_io",
25    defaults: [ "f2fs-io-defaults" ],
26    srcs: [
27        "f2fs_io.c",
28    ],
29    product_specific: true,
30}
31