OLD | NEW |
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 Loading... |
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 Loading... |
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 Loading... |
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: |
OLD | NEW |