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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 'base/file_stream.h', | 55 'base/file_stream.h', |
56 'base/file_stream_win.cc', | 56 'base/file_stream_win.cc', |
57 'base/filter.cc', | 57 'base/filter.cc', |
58 'base/filter.h', | 58 'base/filter.h', |
59 'base/gzip_filter.cc', | 59 'base/gzip_filter.cc', |
60 'base/gzip_filter.h', | 60 'base/gzip_filter.h', |
61 'base/gzip_header.cc', | 61 'base/gzip_header.cc', |
62 'base/gzip_header.h', | 62 'base/gzip_header.h', |
63 'base/host_resolver.cc', | 63 'base/host_resolver.cc', |
64 'base/host_resolver.h', | 64 'base/host_resolver.h', |
| 65 'base/io_buffer.h', |
65 'base/listen_socket.cc', | 66 'base/listen_socket.cc', |
66 'base/listen_socket.h', | 67 'base/listen_socket.h', |
67 'base/load_flags.h', | 68 'base/load_flags.h', |
68 'base/mime_sniffer.cc', | 69 'base/mime_sniffer.cc', |
69 'base/mime_sniffer.h', | 70 'base/mime_sniffer.h', |
70 'base/mime_util.cc', | 71 'base/mime_util.cc', |
71 'base/mime_util.h', | 72 'base/mime_util.h', |
72 'base/net_error_list.h', | 73 'base/net_error_list.h', |
73 'base/net_errors.cc', | 74 'base/net_errors.cc', |
74 'base/net_errors.h', | 75 'base/net_errors.h', |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
409 UsePrecompiledHeader='1'), | 410 UsePrecompiledHeader='1'), |
410 ]) | 411 ]) |
411 | 412 |
412 # TODO(sgk): remove when we can derive this information | 413 # TODO(sgk): remove when we can derive this information |
413 p.AddFileConfig('build/precompiled_net.cc', | 414 p.AddFileConfig('build/precompiled_net.cc', |
414 'Release|Win32', | 415 'Release|Win32', |
415 ExcludedFromBuild='true', | 416 ExcludedFromBuild='true', |
416 tools=[ | 417 tools=[ |
417 'VCCLCompilerTool', | 418 'VCCLCompilerTool', |
418 ]) | 419 ]) |
OLD | NEW |