Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* |
michael@0 | 2 | * Copyright (c) 2013 Mozilla Foundation. All Rights Reserved. |
michael@0 | 3 | * Use of this source code is governed by a BSD-style license |
michael@0 | 4 | * that can be found in the LICENSE file in the root of the source |
michael@0 | 5 | * tree. An additional intellectual property rights grant can be found |
michael@0 | 6 | * in the file PATENTS. |
michael@0 | 7 | */ |
michael@0 | 8 | |
michael@0 | 9 | #if defined(_WIN64) |
michael@0 | 10 | /* 64 bit Windows */ |
michael@0 | 11 | #ifdef _MSC_VER |
michael@0 | 12 | #include "vp9_rtcd_x86_64-win64-vs8.h" |
michael@0 | 13 | #else |
michael@0 | 14 | #include "vp9_rtcd_x86_64-win64-gcc.h" |
michael@0 | 15 | #endif |
michael@0 | 16 | |
michael@0 | 17 | #elif defined(_WIN32) |
michael@0 | 18 | /* 32 bit Windows, MSVC. */ |
michael@0 | 19 | #ifdef _MSC_VER |
michael@0 | 20 | #include "vp9_rtcd_x86-win32-vs8.h" |
michael@0 | 21 | #else |
michael@0 | 22 | #include "vp9_rtcd_x86-win32-gcc.h" |
michael@0 | 23 | #endif |
michael@0 | 24 | |
michael@0 | 25 | #elif defined(__APPLE__) && defined(__x86_64__) |
michael@0 | 26 | /* 64 bit MacOS. */ |
michael@0 | 27 | #include "vp9_rtcd_x86_64-darwin9-gcc.h" |
michael@0 | 28 | |
michael@0 | 29 | #elif defined(__APPLE__) && defined(__i386__) |
michael@0 | 30 | /* 32 bit MacOS. */ |
michael@0 | 31 | #include "vp9_rtcd_x86-darwin9-gcc.h" |
michael@0 | 32 | |
michael@0 | 33 | #elif defined(__ELF__) && (defined(__i386) || defined(__i386__)) |
michael@0 | 34 | /* 32 bit ELF platforms. */ |
michael@0 | 35 | #include "vp9_rtcd_x86-linux-gcc.h" |
michael@0 | 36 | |
michael@0 | 37 | #elif defined(__ELF__) && (defined(__x86_64) || defined(__x86_64__)) |
michael@0 | 38 | /* 64 bit ELF platforms. */ |
michael@0 | 39 | #include "vp9_rtcd_x86_64-linux-gcc.h" |
michael@0 | 40 | |
michael@0 | 41 | #elif defined(VPX_ARM_ASM) |
michael@0 | 42 | /* Android */ |
michael@0 | 43 | #include "vp9_rtcd_armv7-android-gcc.h" |
michael@0 | 44 | |
michael@0 | 45 | #else |
michael@0 | 46 | /* Assume generic GNU/GCC configuration. */ |
michael@0 | 47 | #include "vp9_rtcd_generic-gnu.h" |
michael@0 | 48 | #endif |