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

Side by Side Diff: base/third_party/libevent/libevent.gyp

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/kqueue.c ('k') | base/third_party/libevent/libevent_nacl_nonsfi.gyp » ('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) 2012 The Chromium Authors. All rights reserved. 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 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'libevent', 8 'target_name': 'libevent',
9 'product_name': 'event', 9 'product_name': 'event',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 10 matching lines...) Expand all
21 'log.c', 21 'log.c',
22 'poll.c', 22 'poll.c',
23 'select.c', 23 'select.c',
24 'signal.c', 24 'signal.c',
25 'strlcpy.c', 25 'strlcpy.c',
26 ], 26 ],
27 'defines': [ 27 'defines': [
28 'HAVE_CONFIG_H', 28 'HAVE_CONFIG_H',
29 ], 29 ],
30 'include_dirs': [ 30 'include_dirs': [
31 '../..', 31 '../../..',
32 ], 32 ],
33 'conditions': [ 33 'conditions': [
34 # libevent has platform-specific implementation files. Since its 34 # libevent has platform-specific implementation files. Since its
35 # native build uses autoconf, platform-specific config.h files are 35 # native build uses autoconf, platform-specific config.h files are
36 # provided and live in platform-specific directories. 36 # provided and live in platform-specific directories.
37 [ 'OS == "linux" or (OS == "android" and _toolset == "host")', { 37 [ 'OS == "linux" or (OS == "android" and _toolset == "host")', {
38 'sources': [ 'epoll.c' ], 38 'sources': [ 'epoll.c' ],
39 'include_dirs': [ 'linux' ], 39 'include_dirs': [ 'linux' ],
40 'link_settings': { 40 'link_settings': {
41 'libraries': [ 41 'libraries': [
(...skipping 13 matching lines...) Expand all
55 'include_dirs': [ 'mac' ] 55 'include_dirs': [ 'mac' ]
56 }], 56 }],
57 [ 'OS == "solaris"', { 57 [ 'OS == "solaris"', {
58 'sources': [ 'devpoll.c', 'evport.c' ], 58 'sources': [ 'devpoll.c', 'evport.c' ],
59 'include_dirs': [ 'solaris' ] 59 'include_dirs': [ 'solaris' ]
60 }], 60 }],
61 ], 61 ],
62 }, 62 },
63 ], 63 ],
64 } 64 }
OLDNEW
« no previous file with comments | « base/third_party/libevent/kqueue.c ('k') | base/third_party/libevent/libevent_nacl_nonsfi.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698