mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 910754 - Update SkUserConfig to cater for SkMutex/SkAtomics header locations r=snorp
This commit is contained in:
parent
5a5d0aa86b
commit
2bea7ef8b3
@ -188,5 +188,17 @@
|
||||
*/
|
||||
//#define SK_ATOMICS_PLATFORM_H "SkAtomics_xxx.h"
|
||||
//#define SK_MUTEX_PLATFORM_H "SkMutex_xxx.h"
|
||||
# if defined(SK_BUILD_FOR_WIN32)
|
||||
# define SK_ATOMICS_PLATFORM_H "skia/SkAtomics_win.h"
|
||||
# elif defined(SK_BUILD_FOR_ANDROID_FRAMEWORK)
|
||||
# define SK_ATOMICS_PLATFORM_H "skia/SkAtomics_android.h"
|
||||
# else
|
||||
# define SK_ATOMICS_PLATFORM_H "skia/SkAtomics_sync.h"
|
||||
# endif
|
||||
|
||||
# if defined(SK_BUILD_FOR_WIN32)
|
||||
# define SK_MUTEX_PLATFORM_H "skia/SkMutex_win.h"
|
||||
# else
|
||||
# define SK_MUTEX_PLATFORM_H "skia/SkMutex_pthread.h"
|
||||
# endif
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user