Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(436)

Unified Diff: media/base/BUILD.gn

Issue 516543004: Cleanup: Remove unneeded media/ SSE2 checks and unused code. (try 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix build Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | media/base/simd/convert_yuv_to_rgb.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/BUILD.gn
diff --git a/media/base/BUILD.gn b/media/base/BUILD.gn
index 37455d19bd28f942a3afb37a907109b9173007a2..ef87c3246f25c90fc3648bdd58d6bc3f8320ff68 100644
--- a/media/base/BUILD.gn
+++ b/media/base/BUILD.gn
@@ -209,7 +209,6 @@ source_set("base") {
sources += [ "simd/convert_yuv_to_rgb_x86.cc" ]
deps += [
":media_yasm",
- ":media_mmx",
":media_sse2",
]
}
@@ -351,14 +350,6 @@ source_set("perftests") {
}
if (cpu_arch == "x86" || cpu_arch == "x64") {
- source_set("media_mmx") {
- sources = [ "simd/filter_yuv_mmx.cc" ]
- configs += [ "//media:media_config" ]
- if (!is_win) {
- cflags = [ "-mmmx" ]
- }
- }
-
source_set("media_sse2") {
sources = [
"simd/convert_rgb_to_yuv_sse2.cc",
@@ -375,7 +366,6 @@ if (cpu_arch == "x86" || cpu_arch == "x64") {
yasm_assemble("media_yasm") {
sources = [
"simd/convert_rgb_to_yuv_ssse3.asm",
- "simd/convert_yuv_to_rgb_mmx.asm",
"simd/convert_yuv_to_rgb_sse.asm",
"simd/convert_yuva_to_argb_mmx.asm",
"simd/empty_register_state_mmx.asm",
« no previous file with comments | « no previous file | media/base/simd/convert_yuv_to_rgb.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698