summaryrefslogtreecommitdiff
path: root/solution.mk
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2014-07-31 14:19:31 -0700
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2014-11-06 16:00:01 -0800
commit6eec73a747f3d14d327cdc33279de96d0deb48c8 (patch)
tree608192f2d9a50bc6b8e47dc09f359366ea4305e6 /solution.mk
parentbf44117d5f9d9f721bef9504999162bd5c2da0a2 (diff)
downloadlibvpx-6eec73a747f3d14d327cdc33279de96d0deb48c8.tar
libvpx-6eec73a747f3d14d327cdc33279de96d0deb48c8.tar.gz
libvpx-6eec73a747f3d14d327cdc33279de96d0deb48c8.tar.bz2
libvpx-6eec73a747f3d14d327cdc33279de96d0deb48c8.zip
Remove asm offset dependencies
The obj_int_extract code is no longer worth maintaining. It creates significant issues when adapting for different build systems and no longer offers as significant of a performance benefit due to improvements in intrinsics. Source files will remain until the various third-party builds are updated. The neon fast quantizer has been moved to intrinsics. The armv6 version has been removed because so few remaining targets require it. Compilers and processors have improved significantly since the pack_tokens code was written. The assembly is no longer faster than the C code. pack_tokens were the only optimizations for the armv5te targets so the targets will be removed after the test infrastructure has been updated. BUG=710 Change-Id: Ic785b167cd9f95eeff31c7c76b7b736c07fb30eb
Diffstat (limited to 'solution.mk')
-rw-r--r--solution.mk3
1 files changed, 1 insertions, 2 deletions
diff --git a/solution.mk b/solution.mk
index 2c8d29a2a..145adc0dd 100644
--- a/solution.mk
+++ b/solution.mk
@@ -9,7 +9,7 @@
##
# libvpx reverse dependencies (targets that depend on libvpx)
-VPX_NONDEPS=$(addsuffix .$(VCPROJ_SFX),vpx gtest obj_int_extract)
+VPX_NONDEPS=$(addsuffix .$(VCPROJ_SFX),vpx gtest)
VPX_RDEPS=$(foreach vcp,\
$(filter-out $(VPX_NONDEPS),$^), --dep=$(vcp:.$(VCPROJ_SFX)=):vpx)
@@ -17,7 +17,6 @@ vpx.sln: $(wildcard *.$(VCPROJ_SFX))
@echo " [CREATE] $@"
$(SRC_PATH_BARE)/build/make/gen_msvs_sln.sh \
$(if $(filter vpx.$(VCPROJ_SFX),$^),$(VPX_RDEPS)) \
- --dep=vpx:obj_int_extract \
--dep=test_libvpx:gtest \
--ver=$(CONFIG_VS_VERSION)\
--out=$@ $^