xref: /aosp_15_r20/external/libchrome/base/third_party/libevent/event.h (revision 635a864187cb8b6c713ff48b7e790a6b21769273)
1 // The Chromium build contains its own checkout of libevent. This stub is used
2 // when building the Chrome OS or Android libchrome package to instead use the
3 // system headers.
4 #if defined(__ANDROID__) || defined(__ANDROID_HOST__)
5 #include <event2/event.h>
6 #include <event2/event_compat.h>
7 #include <event2/event_struct.h>
8 #else
9 #include <event.h>
10 #endif
11