1 // Copyright (c) 2009 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 5 // This file is Chromium-specific, and brings in the appropriate 6 // event-config.h depending on your platform. 7 8 #if defined(__APPLE__) 9 #include "mac/event-config.h" 10 #elif defined(ANDROID) // Android has to be defined before linux 11 #include "android/event-config.h" 12 #elif defined(__linux__) 13 #include "linux/event-config.h" 14 #elif defined(__FreeBSD__) 15 #include "freebsd/event-config.h" 16 #else 17 #error generate event-config.h for your platform 18 #endif 19