Bob Badour | e539dba | 2021-02-12 17:07:05 -0800 | [diff] [blame] | 1 | package { |
| 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 "frameworks_base_license" |
| 5 | // to get the below license kinds: |
| 6 | // SPDX-license-identifier-Apache-2.0 |
| 7 | default_applicable_licenses: ["frameworks_base_license"], |
| 8 | } |
| 9 | |
Dan Willemsen | a13b003 | 2018-11-16 15:47:43 -0800 | [diff] [blame] | 10 | cc_binary { |
| 11 | name: "screencap", |
| 12 | |
| 13 | srcs: ["screencap.cpp"], |
| 14 | |
| 15 | shared_libs: [ |
| 16 | "libcutils", |
| 17 | "libutils", |
| 18 | "libbinder", |
Derek Sollenberger | a3ef094 | 2020-04-08 15:47:55 -0400 | [diff] [blame] | 19 | "libjnigraphics", |
Alec Mouri | 6f6679b | 2024-07-15 22:43:54 +0000 | [diff] [blame] | 20 | "libhwui", |
Dan Willemsen | a13b003 | 2018-11-16 15:47:43 -0800 | [diff] [blame] | 21 | "libui", |
| 22 | "libgui", |
| 23 | ], |
| 24 | |
| 25 | cflags: [ |
| 26 | "-Wall", |
| 27 | "-Werror", |
| 28 | "-Wunused", |
| 29 | "-Wunreachable-code", |
| 30 | ], |
| 31 | } |