xref: /aosp_15_r20/system/extras/slideshow/Android.bp (revision 288bf5226967eb3dac5cce6c939ccc2a7f2b4fe5)
1// Copyright 2015 The Android Open Source Project
2
3package {
4    default_applicable_licenses: ["system_extras_slideshow_license"],
5}
6
7// See: http://go/android-license-faq
8license {
9    name: "system_extras_slideshow_license",
10    visibility: [":__subpackages__"],
11    license_kinds: [
12        "SPDX-license-identifier-Apache-2.0",
13    ],
14    license_text: [
15        "NOTICE",
16    ],
17}
18
19cc_binary {
20    name: "slideshow",
21    srcs: ["slideshow.cpp"],
22    shared_libs: [
23        "libminui",
24        "libpng",
25        "libbase",
26        "libz",
27        "libutils",
28        "libcutils",
29        "liblog",
30        "libm",
31        "libc",
32    ],
33}
34