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
3 # found in the LICENSE file.
6 Master configuration for building net components.
14 'net_perftests.scons',
15 'net_unittests.scons',
19 if env['PLATFORM'] in ('posix', 'darwin'):
20 # Remove *.scons files whose targets still need to be ported.
21 # TODO(port): delete files from this list as they get ported.
26 for remove in to_be_ported:
27 sconscript_files.remove(remove)
29 if env['PLATFORM'] == 'win32':
30 # TODO: We need to port tld_cleanup before this will work on other
32 sconscript_files.extend([
33 'net_resources.scons',
34 'tools/tld_cleanup/tld_cleanup.scons',
37 SConscript(sconscript_files, exports=['env'])