Index: runtime/bin/platform_android.cc |
=================================================================== |
--- runtime/bin/platform_android.cc (revision 18775) |
+++ runtime/bin/platform_android.cc (working copy) |
@@ -2,11 +2,14 @@ |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
+#include "platform/globals.h" |
+#if defined(TARGET_OS_ANDROID) |
+ |
#include "bin/platform.h" |
-#include <signal.h> |
-#include <string.h> |
-#include <unistd.h> |
+#include <signal.h> // NOLINT |
+#include <string.h> // NOLINT |
+#include <unistd.h> // NOLINT |
bool Platform::Initialize() { |
@@ -65,3 +68,5 @@ |
void Platform::FreeEnvironment(char** env, intptr_t count) { |
delete[] env; |
} |
+ |
+#endif // defined(TARGET_OS_ANDROID) |