OLD | NEW |
1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2006-2008 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 __doc__ = """ | 5 __doc__ = """ |
6 Configuration for building net.lib / libnet.a. | 6 Configuration for building net.lib / libnet.a. |
7 """ | 7 """ |
8 | 8 |
9 Import('env') | 9 Import('env') |
10 | 10 |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 'proxy/proxy_resolver_mac.cc', | 328 'proxy/proxy_resolver_mac.cc', |
329 ]) | 329 ]) |
330 | 330 |
331 if env.Bit('linux'): | 331 if env.Bit('linux'): |
332 input_files.Extend([ | 332 input_files.Extend([ |
333 'base/nss_memio.c', | 333 'base/nss_memio.c', |
334 # TODO(tc): gnome-vfs? xdgmime? /etc/mime.types? | 334 # TODO(tc): gnome-vfs? xdgmime? /etc/mime.types? |
335 'base/platform_mime_util_linux.cc', | 335 'base/platform_mime_util_linux.cc', |
336 'base/ssl_client_socket_nss.cc', | 336 'base/ssl_client_socket_nss.cc', |
337 'base/x509_certificate_nss.cc', | 337 'base/x509_certificate_nss.cc', |
| 338 'proxy/proxy_config_service_linux.cc', |
338 ]) | 339 ]) |
339 | 340 |
340 if env.Bit('posix'): | 341 if env.Bit('posix'): |
341 input_files.Extend([ | 342 input_files.Extend([ |
342 'base/file_stream_posix.cc', | 343 'base/file_stream_posix.cc', |
343 'base/net_util_posix.cc', | 344 'base/net_util_posix.cc', |
344 'base/tcp_client_socket_libevent.cc', | 345 'base/tcp_client_socket_libevent.cc', |
345 'disk_cache/cache_util_posix.cc', | 346 'disk_cache/cache_util_posix.cc', |
346 'disk_cache/file_posix.cc', | 347 'disk_cache/file_posix.cc', |
347 'disk_cache/mapped_file_posix.cc', | 348 'disk_cache/mapped_file_posix.cc', |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
438 UsePrecompiledHeader='1'), | 439 UsePrecompiledHeader='1'), |
439 ]) | 440 ]) |
440 | 441 |
441 # TODO(sgk): remove when we can derive this information | 442 # TODO(sgk): remove when we can derive this information |
442 p.AddFileConfig('build/precompiled_net.cc', | 443 p.AddFileConfig('build/precompiled_net.cc', |
443 'Release|Win32', | 444 'Release|Win32', |
444 ExcludedFromBuild='true', | 445 ExcludedFromBuild='true', |
445 tools=[ | 446 tools=[ |
446 'VCCLCompilerTool', | 447 'VCCLCompilerTool', |
447 ]) | 448 ]) |
OLD | NEW |