1--- /dev/null 2+++ b/base/third_party/libevent/event.h 3@@ -0,0 +1,10 @@ 4+// The Chromium build contains its own checkout of libevent. This stub is used 5+// when building the Chrome OS or Android libchrome package to instead use the 6+// system headers. 7+#if defined(__ANDROID__) || defined(__ANDROID_HOST__) 8+#include <event2/event.h> 9+#include <event2/event_compat.h> 10+#include <event2/event_struct.h> 11+#else 12+#include <event.h> 13+#endif 14