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

Unified Diff: runtime/platform/thread.h

Issue 10823209: Add support for building the Dart VM for Android OS. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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
Index: runtime/platform/thread.h
diff --git a/runtime/platform/thread.h b/runtime/platform/thread.h
index d457570c72b4e6c72eedfe41177525f9c872797b..4b19f8b5286755b6274632be6481624b898e639b 100644
--- a/runtime/platform/thread.h
+++ b/runtime/platform/thread.h
@@ -8,7 +8,9 @@
#include "platform/globals.h"
// Declare the OS-specific types ahead of defining the generic classes.
-#if defined(TARGET_OS_LINUX)
+#if defined(TARGET_OS_ANDROID)
+#include "platform/thread_android.h"
+#elif defined(TARGET_OS_LINUX)
#include "platform/thread_linux.h"
#elif defined(TARGET_OS_MACOS)
#include "platform/thread_macos.h"

Powered by Google App Engine
This is Rietveld 408576698