aboutsummaryrefslogtreecommitdiff
path: root/system/codecs/omx/vpxdec/Android.bp
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-05-09 01:00:48 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-05-09 01:00:48 +0000
commit5b271ce350a5f09adb2b685effcf45f361be96fd (patch)
tree3014533bf05f7a0aeaac626dde976dcbdefe0488 /system/codecs/omx/vpxdec/Android.bp
parent6236e1a7bd1ad22dca0b11f80f9b557387ea03ef (diff)
parentfd2e21c66a387fb8b9a8fe5a98161522eb173f29 (diff)
downloadgoldfish-opengl-5b271ce350a5f09adb2b685effcf45f361be96fd.tar.gz
Snap for 11819063 from fd2e21c66a387fb8b9a8fe5a98161522eb173f29 to sdk-release
Change-Id: I0ace9cb11add6bfcbec58081bd79d22c0a3a3b27
Diffstat (limited to 'system/codecs/omx/vpxdec/Android.bp')
-rw-r--r--system/codecs/omx/vpxdec/Android.bp52
1 files changed, 52 insertions, 0 deletions
diff --git a/system/codecs/omx/vpxdec/Android.bp b/system/codecs/omx/vpxdec/Android.bp
new file mode 100644
index 00000000..09a7f9cc
--- /dev/null
+++ b/system/codecs/omx/vpxdec/Android.bp
@@ -0,0 +1,52 @@
+//
+// Copyright 2018 The Android Open-Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+
+cc_library_shared {
+ name: "libstagefright_goldfish_vpxdec",
+ vendor: true,
+ srcs: [
+ "GoldfishVPX.cpp",
+ "goldfish_vpx_impl.cpp",
+ ],
+ export_include_dirs: [
+ "include",
+ ],
+ shared_libs: [
+ "libstagefrighthw",
+ "android.hardware.media.omx@1.0",
+ "android.hardware.graphics.common@1.2",
+ "libstagefright_foundation",
+ "libbinder",
+ "libcutils",
+ "libutils",
+ "liblog",
+ "libui",
+ ],
+ static_libs: [
+ "libgoldfish_codecs_common",
+ ],
+ header_libs: [
+ "media_plugin_headers",
+ "libmedia_headers",
+ "libbinder_headers",
+ "libhardware_headers",
+ "libnativewindow_headers",
+ "libgralloc_cb.ranchu",
+ ],
+ cflags: [
+ "-DLOG_TAG=\"goldfish_vpxdec\"",
+ ],
+}