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 cflags: [ 23 "-D__STDC_LIMIT_MACROS", 24 ], 25 shared_libs: [ 26 "libminui", 27 "libpng", 28 "libbase", 29 "libz", 30 "libutils", 31 "libcutils", 32 "liblog", 33 "libm", 34 "libc", 35 ], 36} 37