summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarish Mahendrakar <harish.mahendrakar@ittiam.com>2019-09-25 12:02:57 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-09-25 12:02:57 -0700
commit3ec7d07ac6b6ebab1e08bfe9b1f452de167f4963 (patch)
tree5047871efd38ce8c720ac6f06ddce5b589eb936c
parent98075645a5b3ca47d8d0e6f2d3b516ef5baddd61 (diff)
parentaab07a44fdc080c2e193e49b2d5c5923080d4b74 (diff)
downloadplatform_external_libaom-3ec7d07ac6b6ebab1e08bfe9b1f452de167f4963.tar.gz
platform_external_libaom-3ec7d07ac6b6ebab1e08bfe9b1f452de167f4963.tar.bz2
platform_external_libaom-3ec7d07ac6b6ebab1e08bfe9b1f452de167f4963.zip
Add host support
am: aab07a44fd Change-Id: I8f842e02e931f736a80d5b04b93896b9b9dce83d
-rw-r--r--Android.bp7
-rw-r--r--Android.bp.in7
2 files changed, 14 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index c722d3a..cd50576 100644
--- a/Android.bp
+++ b/Android.bp
@@ -401,6 +401,7 @@ aom_version_sources_gen = [
]
cc_library_static {
name: "libaom",
+ host_supported: true,
vendor_available: true,
cflags: [
"-O3",
@@ -457,6 +458,9 @@ cc_library_static {
"config/",
"config/x86_64/",
],
+ cflags: [
+ "-mssse3",
+ ],
srcs: aom_av1_common_sources +
aom_av1_decoder_sources +
aom_dsp_common_sources +
@@ -480,6 +484,9 @@ cc_library_static {
"config/",
"config/x86/",
],
+ cflags: [
+ "-mssse3",
+ ],
srcs: aom_av1_common_sources +
aom_av1_decoder_sources +
aom_dsp_common_sources +
diff --git a/Android.bp.in b/Android.bp.in
index 18fe81a..04f571f 100644
--- a/Android.bp.in
+++ b/Android.bp.in
@@ -1,5 +1,6 @@
cc_library_static {
name: "libaom",
+ host_supported: true,
vendor_available: true,
cflags: [
"-O3",
@@ -56,6 +57,9 @@ cc_library_static {
"config/",
"config/x86_64/",
],
+ cflags: [
+ "-mssse3",
+ ],
srcs: aom_av1_common_sources +
aom_av1_decoder_sources +
aom_dsp_common_sources +
@@ -79,6 +83,9 @@ cc_library_static {
"config/",
"config/x86/",
],
+ cflags: [
+ "-mssse3",
+ ],
srcs: aom_av1_common_sources +
aom_av1_decoder_sources +
aom_dsp_common_sources +