event-config.h 937 B

123456789101112131415161718192021222324
  1. // Copyright (c) 2011 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. // This file is Chromium-specific, and brings in the appropriate
  5. // event-config.h depending on your platform.
  6. #if defined(__native_client_nonsfi__)
  7. #include "base/third_party/libevent/nacl_nonsfi/event-config.h"
  8. #elif defined(__APPLE__)
  9. #include "base/third_party/libevent/mac/event-config.h"
  10. #elif defined(ANDROID)
  11. #include "base/third_party/libevent/android/event-config.h"
  12. #elif defined(__linux__)
  13. #include "base/third_party/libevent/linux/event-config.h"
  14. #elif defined(__FreeBSD__)
  15. #include "base/third_party/libevent/freebsd/event-config.h"
  16. #elif defined(__sun)
  17. #include "base/third_party/libevent/solaris/event-config.h"
  18. #elif defined(_AIX)
  19. #include "base/third_party/libevent/aix/event-config.h"
  20. #else
  21. #error generate event-config.h for your platform
  22. #endif