1 # Copyright (c) 2012 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.
8 'target_name': 'libevent',
9 'product_name': 'event',
10 'type': 'static_library',
11 'toolsets': ['host', 'target'],
34 # libevent has platform-specific implementation files. Since its
35 # native build uses autoconf, platform-specific config.h files are
36 # provided and live in platform-specific directories.
37 [ 'OS == "linux" or (OS == "android" and _toolset == "host")', {
38 'sources': [ 'epoll.c' ],
39 'include_dirs': [ 'linux' ],
42 # We need rt for clock_gettime().
43 # TODO(port) Maybe on FreeBSD as well?
48 [ 'OS == "android" and _toolset == "target"', {
49 # On android, clock_gettime() is in libc.so, so no need to link librt.
50 'sources': [ 'epoll.c' ],
51 'include_dirs': [ 'android' ],
53 [ 'OS == "mac" or OS == "ios" or os_bsd==1', {
54 'sources': [ 'kqueue.c' ],
55 'include_dirs': [ 'mac' ]
57 [ 'OS == "solaris"', {
58 'sources': [ 'devpoll.c', 'evport.c' ],
59 'include_dirs': [ 'solaris' ]