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

Side by Side Diff: net/net.gyp

Issue 2729012: Add dependency on libevent where required. (Closed)
Patch Set: fixes Created 10 years, 6 months 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 | « chrome/browser/debugger/devtools_remote_listen_socket.cc ('k') | no next file » | 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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 }, 190 },
191 ], 191 ],
192 [ 'OS == "win"', { 192 [ 'OS == "win"', {
193 'dependencies': [ 193 'dependencies': [
194 # For nss_memio.{c,h}, which require only NSPR. 194 # For nss_memio.{c,h}, which require only NSPR.
195 '../third_party/nss/nss.gyp:nspr', 195 '../third_party/nss/nss.gyp:nspr',
196 'tld_cleanup', 196 'tld_cleanup',
197 ], 197 ],
198 }, 198 },
199 { # else: OS != "win" 199 { # else: OS != "win"
200 'dependencies': [
201 '../third_party/libevent/libevent.gyp:libevent',
202 ],
200 'sources!': [ 203 'sources!': [
201 'base/winsock_init.cc', 204 'base/winsock_init.cc',
202 ], 205 ],
203 }, 206 },
204 ], 207 ],
205 [ 'OS == "mac"', { 208 [ 'OS == "mac"', {
206 'dependencies': [ 209 'dependencies': [
207 # For nss_memio.{c,h}, which require only NSPR. 210 # For nss_memio.{c,h}, which require only NSPR.
208 '../third_party/nss/nss.gyp:nspr', 211 '../third_party/nss/nss.gyp:nspr',
209 ], 212 ],
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 'third_party/nss/ssl.gyp:ssl', 582 'third_party/nss/ssl.gyp:ssl',
580 'tld_cleanup', 583 'tld_cleanup',
581 ], 584 ],
582 'link_settings': { 585 'link_settings': {
583 'libraries': [ 586 'libraries': [
584 '-lIphlpapi.lib', 587 '-lIphlpapi.lib',
585 ], 588 ],
586 }, 589 },
587 }, 590 },
588 { # else: OS != "win" 591 { # else: OS != "win"
592 'dependencies': [
593 '../third_party/libevent/libevent.gyp:libevent',
594 ],
589 'sources!': [ 595 'sources!': [
590 'proxy/proxy_resolver_winhttp.cc', 596 'proxy/proxy_resolver_winhttp.cc',
591 ], 597 ],
592 }, 598 },
593 ], 599 ],
594 [ 'OS == "mac"', { 600 [ 'OS == "mac"', {
595 'dependencies': [ 601 'dependencies': [
596 '../third_party/nss/nss.gyp:nss', 602 '../third_party/nss/nss.gyp:nss',
597 'third_party/nss/ssl.gyp:ssl', 603 'third_party/nss/ssl.gyp:ssl',
598 ], 604 ],
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
1052 ], 1058 ],
1053 }], 1059 }],
1054 ], 1060 ],
1055 } 1061 }
1056 1062
1057 # Local Variables: 1063 # Local Variables:
1058 # tab-width:2 1064 # tab-width:2
1059 # indent-tabs-mode:nil 1065 # indent-tabs-mode:nil
1060 # End: 1066 # End:
1061 # vim: set expandtab tabstop=2 shiftwidth=2: 1067 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/browser/debugger/devtools_remote_listen_socket.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698