Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(205)

Side by Side Diff: base/third_party/libevent/event-config.h

Issue 1531573008: move libevent into base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix shim path Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/third_party/libevent/event.c ('k') | base/third_party/libevent/event-internal.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file is Chromium-specific, and brings in the appropriate 5 // This file is Chromium-specific, and brings in the appropriate
6 // event-config.h depending on your platform. 6 // event-config.h depending on your platform.
7 7
8 #if defined(__native_client_nonsfi__) 8 #if defined(__native_client_nonsfi__)
9 #include "third_party/libevent/nacl_nonsfi/event-config.h" 9 #include "base/third_party/libevent/nacl_nonsfi/event-config.h"
10 #elif defined(__APPLE__) 10 #elif defined(__APPLE__)
11 #include "third_party/libevent/mac/event-config.h" 11 #include "base/third_party/libevent/mac/event-config.h"
12 #elif defined(ANDROID) 12 #elif defined(ANDROID)
13 #include "third_party/libevent/android/event-config.h" 13 #include "base/third_party/libevent/android/event-config.h"
14 #elif defined(__linux__) 14 #elif defined(__linux__)
15 #include "third_party/libevent/linux/event-config.h" 15 #include "base/third_party/libevent/linux/event-config.h"
16 #elif defined(__FreeBSD__) 16 #elif defined(__FreeBSD__)
17 #include "third_party/libevent/freebsd/event-config.h" 17 #include "base/third_party/libevent/freebsd/event-config.h"
18 #elif defined(__sun) 18 #elif defined(__sun)
19 #include "third_party/libevent/solaris/event-config.h" 19 #include "base/third_party/libevent/solaris/event-config.h"
20 #else 20 #else
21 #error generate event-config.h for your platform 21 #error generate event-config.h for your platform
22 #endif 22 #endif
OLDNEW
« no previous file with comments | « base/third_party/libevent/event.c ('k') | base/third_party/libevent/event-internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698