summaryrefslogtreecommitdiffstats
path: root/skia/config
diff options
context:
space:
mode:
authorbungeman@chromium.org <bungeman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-21 20:47:39 +0000
committerbungeman@chromium.org <bungeman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-21 20:47:39 +0000
commite593f8b12a57a5270b6d5024aa90fee435a38c19 (patch)
tree93d0e95b1e7510bca8fd99231ea9ba610d3ce06a /skia/config
parentf9e684382c3f1a2ad74e62477c33ffdebf849567 (diff)
downloadchromium_src-e593f8b12a57a5270b6d5024aa90fee435a38c19.zip
chromium_src-e593f8b12a57a5270b6d5024aa90fee435a38c19.tar.gz
chromium_src-e593f8b12a57a5270b6d5024aa90fee435a38c19.tar.bz2
Improve Skia configuration.
This is the Chromium side of https://codereview.chromium.org/19808007 . R=djsollen@google.com Review URL: https://codereview.chromium.org/19477005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229905 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/config')
-rw-r--r--skia/config/SkUserConfig.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/skia/config/SkUserConfig.h b/skia/config/SkUserConfig.h
index ea80e27..302a072 100644
--- a/skia/config/SkUserConfig.h
+++ b/skia/config/SkUserConfig.h
@@ -183,19 +183,6 @@ SK_API void SkDebugf_FileLine(const char* file, int line, bool fatal,
#define SK_BUILD_FOR_WIN
-// VC8 doesn't support stdint.h, so we define those types here.
-#define SK_IGNORE_STDINT_DOT_H
-typedef signed char int8_t;
-typedef unsigned char uint8_t;
-typedef short int16_t;
-typedef unsigned short uint16_t;
-typedef int int32_t;
-typedef unsigned uint32_t;
-
-// VC doesn't support __restrict__, so make it a NOP.
-#undef SK_RESTRICT
-#define SK_RESTRICT
-
// Skia uses this deprecated bzero function to fill zeros into a string.
#define bzero(str, len) memset(str, 0, len)