| Pascal Muetschard | 33da4ae | 2023-03-23 10:00:05 +0100 | [diff] [blame] | 1 | package { |
| 2 | // See: http://go/android-license-faq | ||||
| 3 | default_applicable_licenses: ["frameworks_base_license"], | ||||
| 4 | } | ||||
| 5 | |||||
| 6 | cc_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", | ||||
| Pascal Muetschard | 33da4ae | 2023-03-23 10:00:05 +0100 | [diff] [blame] | 21 | ], |
| Pascal Muetschard | 33da4ae | 2023-03-23 10:00:05 +0100 | [diff] [blame] | 22 | } |