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

Side by Side Diff: media/base/simd/x86inc.asm

Issue 12036108: Enables win64 build of yuv_convert_simd_x86 without rolling x86inc.asm forward. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: GYP cleanup Created 7 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | media/media.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ;***************************************************************************** 1 ;*****************************************************************************
2 ;* x86inc.asm 2 ;* x86inc.asm
3 ;***************************************************************************** 3 ;*****************************************************************************
4 ;* Copyright (C) 2005-2011 x264 project 4 ;* Copyright (C) 2005-2011 x264 project
5 ;* 5 ;*
6 ;* Authors: Loren Merritt <lorenm@u.washington.edu> 6 ;* Authors: Loren Merritt <lorenm@u.washington.edu>
7 ;* Anton Mitrofanov <BugMaster@narod.ru> 7 ;* Anton Mitrofanov <BugMaster@narod.ru>
8 ;* Jason Garrett-Glaser <darkshikari@gmail.com> 8 ;* Jason Garrett-Glaser <darkshikari@gmail.com>
9 ;* 9 ;*
10 ;* Permission to use, copy, modify, and/or distribute this software for any 10 ;* Permission to use, copy, modify, and/or distribute this software for any
(...skipping 23 matching lines...) Expand all
34 ; to x264-devel@videolan.org . 34 ; to x264-devel@videolan.org .
35 35
36 %ifndef MEDIA_BASE_SIMD_X86INC_ASM_ 36 %ifndef MEDIA_BASE_SIMD_X86INC_ASM_
37 %define MEDIA_BASE_SIMD_X86INC_ASM_ 37 %define MEDIA_BASE_SIMD_X86INC_ASM_
38 38
39 %define program_name ff 39 %define program_name ff
40 40
41 %ifdef ARCH_X86_64 41 %ifdef ARCH_X86_64
42 %ifidn __OUTPUT_FORMAT__,win32 42 %ifidn __OUTPUT_FORMAT__,win32
43 %define WIN64 43 %define WIN64
44 %elifidn __OUTPUT_FORMAT__,win64
45 %define WIN64
44 %else 46 %else
45 %define UNIX64 47 %define UNIX64
46 %endif 48 %endif
47 %endif 49 %endif
48 50
49 %ifdef PREFIX 51 %ifdef PREFIX
50 %define mangle(x) _ %+ x 52 %define mangle(x) _ %+ x
51 %else 53 %else
52 %define mangle(x) x 54 %define mangle(x) x
53 %endif 55 %endif
(...skipping 949 matching lines...) Expand 10 before | Expand all | Expand 10 after
1003 %define PRIVATE :private_extern 1005 %define PRIVATE :private_extern
1004 %elifdef ELF 1006 %elifdef ELF
1005 %define PRIVATE :hidden 1007 %define PRIVATE :hidden
1006 %else 1008 %else
1007 %define PRIVATE 1009 %define PRIVATE
1008 %endif 1010 %endif
1009 1011
1010 %endif ; CHROMIUM 1012 %endif ; CHROMIUM
1011 1013
1012 %endif ; MEDIA_BASE_SIMD_X86INC_ASM_ 1014 %endif ; MEDIA_BASE_SIMD_X86INC_ASM_
OLDNEW
« no previous file with comments | « no previous file | media/media.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698