blob: 5b118ce62679634b8404ccce44632cbc1cac94e3 [file] [log] [blame]
Pascal Muetschard33da4ae2023-03-23 10:00:05 +01001package {
2 // See: http://go/android-license-faq
3 default_applicable_licenses: ["frameworks_base_license"],
4}
5
6cc_binary {
7 name: "gpu_counter_producer",
8
9 srcs: ["main.cpp"],
10
11 shared_libs: [
12 "libdl",
13 "liblog",
14 ],
15
16 cflags: [
17 "-Wall",
18 "-Werror",
19 "-Wunused",
20 "-Wunreachable-code",
21 "-fPIE",
22 "-pie",
23 ],
24
25 soc_specific: true,
26}