diff options
author | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-06 15:59:59 +0000 |
---|---|---|
committer | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-06 15:59:59 +0000 |
commit | b08032c2994aab69d3c5ac21532b1a9a175252bb (patch) | |
tree | 880493608b05fbd824a266803ad7abd05339a006 /third_party/libevent | |
parent | 23baa52378747306f9ac9e366944df909b883f12 (diff) | |
download | chromium_src-b08032c2994aab69d3c5ac21532b1a9a175252bb.zip chromium_src-b08032c2994aab69d3c5ac21532b1a9a175252bb.tar.gz chromium_src-b08032c2994aab69d3c5ac21532b1a9a175252bb.tar.bz2 |
Add iOS support to libevent.gyp and expat.gyp
Just adds 'or OS="ios"' to some existing OS="mac" branches.
BUG=None
TEST=None
Review URL: https://chromiumcodereview.appspot.com/10694103
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145597 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/libevent')
-rw-r--r-- | third_party/libevent/libevent.gyp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/libevent/libevent.gyp b/third_party/libevent/libevent.gyp index 641a256..bfb7f56 100644 --- a/third_party/libevent/libevent.gyp +++ b/third_party/libevent/libevent.gyp @@ -1,4 +1,4 @@ -# Copyright (c) 2011 The Chromium Authors. All rights reserved. +# Copyright (c) 2012 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. @@ -54,7 +54,7 @@ 'sources': [ 'epoll.c' ], 'include_dirs': [ 'android' ], }], - [ 'OS == "mac" or os_bsd==1', { + [ 'OS == "mac" or OS == "ios" or os_bsd==1', { 'sources': [ 'kqueue.c' ], 'include_dirs': [ 'mac' ] }], |