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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 'base/cookie_monster.cc', | 45 'base/cookie_monster.cc', |
46 'base/cookie_monster.h', | 46 'base/cookie_monster.h', |
47 'base/cookie_policy.cc', | 47 'base/cookie_policy.cc', |
48 'base/cookie_policy.h', | 48 'base/cookie_policy.h', |
49 'base/data_url.cc', | 49 'base/data_url.cc', |
50 'base/data_url.h', | 50 'base/data_url.h', |
51 'base/directory_lister.cc', | 51 'base/directory_lister.cc', |
52 'base/directory_lister.h', | 52 'base/directory_lister.h', |
53 'base/dns_resolution_observer.cc', | 53 'base/dns_resolution_observer.cc', |
54 'base/dns_resolution_observer.h', | 54 'base/dns_resolution_observer.h', |
55 'base/effective_tld_names.dat', | 55 'base/effective_tld_names.cc', |
56 'base/escape.cc', | 56 'base/escape.cc', |
57 'base/escape.h', | 57 'base/escape.h', |
58 'base/ev_root_ca_metadata.cc', | 58 'base/ev_root_ca_metadata.cc', |
59 'base/ev_root_ca_metadata.h', | 59 'base/ev_root_ca_metadata.h', |
60 'base/file_stream.h', | 60 'base/file_stream.h', |
61 'base/file_stream_win.cc', | 61 'base/file_stream_win.cc', |
62 'base/filter.cc', | 62 'base/filter.cc', |
63 'base/filter.h', | 63 'base/filter.h', |
64 'base/gzip_filter.cc', | 64 'base/gzip_filter.cc', |
65 'base/gzip_filter.h', | 65 'base/gzip_filter.h', |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 UsePrecompiledHeader='1'), | 412 UsePrecompiledHeader='1'), |
413 ]) | 413 ]) |
414 | 414 |
415 # TODO(sgk): remove when we can derive this information | 415 # TODO(sgk): remove when we can derive this information |
416 p.AddFileConfig('build/precompiled_net.cc', | 416 p.AddFileConfig('build/precompiled_net.cc', |
417 'Release|Win32', | 417 'Release|Win32', |
418 ExcludedFromBuild='true', | 418 ExcludedFromBuild='true', |
419 tools=[ | 419 tools=[ |
420 'VCCLCompilerTool', | 420 'VCCLCompilerTool', |
421 ]) | 421 ]) |
OLD | NEW |