Fix crash on app list start page contents not existing.
[chromium-blink-merge.git] / third_party / libevent / event-config.h
blob2e564db7b53fcd2ba37c197f927e870e4fafaf38
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.
5 // This file is Chromium-specific, and brings in the appropriate
6 // event-config.h depending on your platform.
8 #if defined(__native_client_nonsfi__)
9 #include "nacl_nonsfi/event-config.h"
10 #elif defined(__APPLE__)
11 #include "mac/event-config.h"
12 #elif defined(ANDROID)
13 #include "android/event-config.h"
14 #elif defined(__linux__)
15 #include "linux/event-config.h"
16 #elif defined(__FreeBSD__)
17 #include "freebsd/event-config.h"
18 #elif defined(__sun)
19 #include "solaris/event-config.h"
20 #else
21 #error generate event-config.h for your platform
22 #endif