• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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