| 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"
|
|
|