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

Unified Diff: skia/config/SkUserConfig.h

Issue 19477005: Improve Skia configuration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Add missing file. Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | skia/skia.gyp » ('j') | skia/skia_library.gypi » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/config/SkUserConfig.h
===================================================================
--- skia/config/SkUserConfig.h (revision 227723)
+++ skia/config/SkUserConfig.h (working copy)
@@ -233,6 +233,24 @@
// tracing.
// #define SK_USER_TRACE_INCLUDE_FILE "skia/ext/skia_trace_shim.h"
+#ifndef SK_ATOMICS_PLATFORM_H
+ #if defined(SK_BUILD_FOR_WIN)
+ #define SK_ATOMICS_PLATFORM_H "third_party/skia/src/ports/SkAtomics_win.h"
+ #elif defined(SK_BUILD_FOR_ANDROID_FRAMEWORK)
+ #define SK_ATOMICS_PLATFORM_H "third_party/skia/src/ports/SkAtomics_android.h"
+ #else
+ #define SK_ATOMICS_PLATFORM_H "third_party/skia/src/ports/SkAtomics_sync.h"
+ #endif
+#endif
+
+#ifndef SK_MUTEX_PLATFORM_H
+ #if defined(SK_BUILD_FOR_WIN)
+ #define SK_MUTEX_PLATFORM_H "third_party/skia/src/ports/SkMutex_win.h"
+ #else
+ #define SK_MUTEX_PLATFORM_H "third_party/skia/src/ports/SkMutex_pthread.h"
+ #endif
+#endif
+
// ===== End Chrome-specific definitions =====
#endif
« no previous file with comments | « no previous file | skia/skia.gyp » ('j') | skia/skia_library.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698