Run "gn format" on BUILD.gn and libyuv.gni

Change-Id: I2f201383f0a8b91d5a97c9ec4556de4288aa6696
Reviewed-on: https://chromium-review.googlesource.com/c/libyuv/libyuv/+/5779859
Reviewed-by: Frank Barchard <fbarchard@chromium.org>
This commit is contained in:
Wan-Teh Chang 2024-08-10 18:33:58 -07:00 committed by Frank Barchard
parent 0ffb0cb220
commit 1fad3ab1fa
2 changed files with 4 additions and 10 deletions

View File

@ -247,9 +247,7 @@ if (libyuv_use_neon) {
if (libyuv_use_sve) { if (libyuv_use_sve) {
static_library("libyuv_sve") { static_library("libyuv_sve") {
sources = [ sources = [ "source/row_sve.cc" ]
"source/row_sve.cc",
]
deps = [ ":libyuv_internal" ] deps = [ ":libyuv_internal" ]
@ -262,9 +260,7 @@ if (libyuv_use_sve) {
if (libyuv_use_sme) { if (libyuv_use_sme) {
static_library("libyuv_sme") { static_library("libyuv_sme") {
sources = [ sources = [ "source/rotate_sme.cc" ]
"source/rotate_sme.cc",
]
deps = [ ":libyuv_internal" ] deps = [ ":libyuv_internal" ]

View File

@ -24,8 +24,6 @@ declare_args() {
(current_cpu == "mips64el" || current_cpu == "mipsel") && mips_use_msa (current_cpu == "mips64el" || current_cpu == "mipsel") && mips_use_msa
libyuv_use_mmi = libyuv_use_mmi =
(current_cpu == "mips64el" || current_cpu == "mipsel") && mips_use_mmi (current_cpu == "mips64el" || current_cpu == "mipsel") && mips_use_mmi
libyuv_use_lsx = libyuv_use_lsx = current_cpu == "loong64" && loongarch64_use_lsx
(current_cpu == "loong64") && loongarch64_use_lsx libyuv_use_lasx = current_cpu == "loong64" && loongarch64_use_lasx
libyuv_use_lasx =
(current_cpu == "loong64") && loongarch64_use_lasx
} }