aboutsummaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorFrank Barchard <fbarchard@google.com>2017-01-26 16:09:35 -0800
committerCommit Bot <commit-bot@chromium.org>2017-01-27 23:11:43 +0000
commit54f2094a5e60d287eb1fc634986e46d4e1d4eb66 (patch)
tree1a575ac5eed623700ea6b11bbb645f0ec9caf027 /BUILD.gn
parent33f52bdac996966f82bd870a0887ddc33b918aba (diff)
downloadlibyuv-54f2094a5e60d287eb1fc634986e46d4e1d4eb66.tar.gz
Rename mips source files to dspr2.
Add MSA detect to unittest. Change macro to disable DSPR2 code to LIBYUV_DISABLE_DSPR2 BUG=libyuv:634 TEST=try bots Change-Id: I9e0aa2452204fc529bb6f9e6fd93c4e1c379bba6 Reviewed-on: https://chromium-review.googlesource.com/433463 Reviewed-by: Henrik Kjellander <kjellander@chromium.org> Commit-Queue: Frank Barchard <fbarchard@google.com>
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn8
1 files changed, 4 insertions, 4 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 79ee567a..57771b72 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -79,19 +79,19 @@ static_library("libyuv") {
"source/rotate_any.cc",
"source/rotate_argb.cc",
"source/rotate_common.cc",
- "source/rotate_mips.cc",
+ "source/rotate_dspr2.cc",
"source/rotate_gcc.cc",
"source/rotate_win.cc",
"source/row_any.cc",
"source/row_common.cc",
- "source/row_mips.cc",
+ "source/row_dspr2.cc",
"source/row_gcc.cc",
"source/row_win.cc",
"source/scale.cc",
"source/scale_any.cc",
"source/scale_argb.cc",
"source/scale_common.cc",
- "source/scale_mips.cc",
+ "source/scale_dspr2.cc",
"source/scale_gcc.cc",
"source/scale_win.cc",
"source/video_common.cc",
@@ -254,7 +254,7 @@ if (libyuv_include_tests) {
# Enable the following 3 macros to turn off assembly for specified CPU.
# "LIBYUV_DISABLE_X86",
# "LIBYUV_DISABLE_NEON",
- # "LIBYUV_DISABLE_MIPS",
+ # "LIBYUV_DISABLE_DSPR2",
# Enable the following macro to build libyuv as a shared library (dll).
# "LIBYUV_USING_SHARED_LIBRARY"
]