summaryrefslogtreecommitdiff
path: root/cmds/gpu_counter_producer/Android.bp
blob: d645d066befd4f6ce600fb97a0f043d1cfc5ca15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package {
    // See: http://go/android-license-faq
    default_applicable_licenses: ["frameworks_base_license"],
}

cc_binary {
    name: "gpu_counter_producer",

    srcs: ["main.cpp"],

    shared_libs: [
        "libdl",
        "liblog",
    ],

    cflags: [
        "-Wall",
        "-Werror",
        "-Wunused",
        "-Wunreachable-code",
    ],
}