Remove TOOLKIT_USES_GTK and consolidate it into TOOLKIT_GTK
Add gtk dependency to base.gyp for android host_os="linux" case
BUG=none
TEST=none
Review URL: https://chromiumcodereview.appspot.com/9969080
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130784 0039d316-1c4b-4281-b951-d872f2087c98
CrOS-Libchrome-Original-Commit: a13283ccd0eef981bd92b5ba3b78c7d1b4a678f5
diff --git a/base/message_loop.cc b/base/message_loop.cc
index cc7faa3..f60bf69 100644
--- a/base/message_loop.cc
+++ b/base/message_loop.cc
@@ -30,10 +30,11 @@
#if defined(OS_ANDROID)
#include "base/message_pump_android.h"
#endif
-#if defined(TOOLKIT_USES_GTK)
+
+#if defined(TOOLKIT_GTK)
#include <gdk/gdk.h>
#include <gdk/gdkx.h>
-#endif // defined(OS_POSIX) && !defined(OS_MACOSX)
+#endif
using base::PendingTask;
using base::TimeDelta;