summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 +