You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
436 B
14 lines
436 B
--- /dev/null
|
|
+++ b/base/third_party/libevent/event.h
|
|
@@ -0,0 +1,10 @@
|
|
+// The Chromium build contains its own checkout of libevent. This stub is used
|
|
+// when building the Chrome OS or Android libchrome package to instead use the
|
|
+// system headers.
|
|
+#if defined(__ANDROID__) || defined(__ANDROID_HOST__)
|
|
+#include <event2/event.h>
|
|
+#include <event2/event_compat.h>
|
|
+#include <event2/event_struct.h>
|
|
+#else
|
|
+#include <event.h>
|
|
+#endif
|