diff options
author | ctguil@chromium.org <ctguil@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-17 03:05:55 +0000 |
---|---|---|
committer | ctguil@chromium.org <ctguil@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-17 03:05:55 +0000 |
commit | cf69668ebabe1ad7327347ca51f8231a6ed1eb86 (patch) | |
tree | 9bd0a7ee0bec41bb67c6af16bc6ac9a0139baf13 /skia/config | |
parent | 281d898e4ab8b529a8c0b3a532a39f5ccf4a95d3 (diff) | |
download | chromium_src-cf69668ebabe1ad7327347ca51f8231a6ed1eb86.zip chromium_src-cf69668ebabe1ad7327347ca51f8231a6ed1eb86.tar.gz chromium_src-cf69668ebabe1ad7327347ca51f8231a6ed1eb86.tar.bz2 |
Build skia as a dll in windows multi-dll build.
BUG=75686
TEST=none
Review URL: http://codereview.chromium.org/6682011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78510 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/config')
-rw-r--r-- | skia/config/SkUserConfig.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/skia/config/SkUserConfig.h b/skia/config/SkUserConfig.h index ae8015d..d9746b7 100644 --- a/skia/config/SkUserConfig.h +++ b/skia/config/SkUserConfig.h @@ -143,8 +143,8 @@ // Log the file and line number for assertions. #define SkDebugf(...) SkDebugf_FileLine(__FILE__, __LINE__, false, __VA_ARGS__) -void SkDebugf_FileLine(const char* file, int line, bool fatal, - const char* format, ...); +SK_API void SkDebugf_FileLine(const char* file, int line, bool fatal, + const char* format, ...); // Marking the debug print as "fatal" will cause a debug break, so we don't need // a separate crash call here. |