forked from youtube/cobalt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update libevent from Chromium 114.0.5735.358
- Loading branch information
Showing
10 changed files
with
29 additions
and
678 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,22 @@ | ||
// Copyright (c) 2011 The Chromium Authors. All rights reserved. | ||
// Copyright 2011 The Chromium Authors | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
// This file is Chromium-specific, and brings in the appropriate | ||
// event-config.h depending on your platform. | ||
|
||
#if defined(STARBOARD) | ||
#include "starboard/event-config.h" | ||
#elif defined(__native_client_nonsfi__) | ||
#include "nacl_nonsfi/event-config.h" | ||
#elif defined(__APPLE__) | ||
#include "mac/event-config.h" | ||
#if defined(__APPLE__) | ||
#include "third_party/libevent/mac/event-config.h" | ||
#elif defined(ANDROID) | ||
#include "android/event-config.h" | ||
#include "third_party/libevent/android/event-config.h" | ||
#elif defined(__linux__) | ||
#include "linux/event-config.h" | ||
#include "third_party/libevent/linux/event-config.h" | ||
#elif defined(__FreeBSD__) | ||
#include "freebsd/event-config.h" | ||
#include "third_party/libevent/freebsd/event-config.h" | ||
#elif defined(__sun) | ||
#include "solaris/event-config.h" | ||
#include "third_party/libevent/solaris/event-config.h" | ||
#elif defined(_AIX) | ||
#include "aix/event-config.h" | ||
#include "third_party/libevent/aix/event-config.h" | ||
#else | ||
#error generate event-config.h for your platform | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.