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 Master configuration for building chrome components. | 6 Master configuration for building chrome components. |
7 """ | 7 """ |
8 | 8 |
9 Import('env') | 9 Import('env') |
10 | 10 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 'installer/mini_installer/mini_installer.scons', | 86 'installer/mini_installer/mini_installer.scons', |
87 'installer/setup/setup.scons', | 87 'installer/setup/setup.scons', |
88 'installer/util/util.scons', | 88 'installer/util/util.scons', |
89 'test/activex_test_control/activex_test_control.scons', | 89 'test/activex_test_control/activex_test_control.scons', |
90 'test/automated_ui_tests/automated_ui_tests.scons', | 90 'test/automated_ui_tests/automated_ui_tests.scons', |
91 'test/automation/automation.scons', | 91 'test/automation/automation.scons', |
92 'test/interactive_ui/interactive_ui_tests.scons', | 92 'test/interactive_ui/interactive_ui_tests.scons', |
93 'test/memory_test/memory_test.scons', | 93 'test/memory_test/memory_test.scons', |
94 'test/mini_installer_test/mini_installer_test.scons', | 94 'test/mini_installer_test/mini_installer_test.scons', |
95 'test/page_cycler/page_cycler_tests.scons', | 95 'test/page_cycler/page_cycler_tests.scons', |
96 'test/perf/perftests.scons', | |
97 'test/plugin/plugin_tests.scons', | 96 'test/plugin/plugin_tests.scons', |
98 'test/reliability/reliability_tests.scons', | 97 'test/reliability/reliability_tests.scons', |
99 'test/security_tests/security_tests.scons', | 98 'test/security_tests/security_tests.scons', |
100 'test/selenium/selenium_tests.scons', | 99 'test/selenium/selenium_tests.scons', |
101 'test/startup/startup_tests.scons', | 100 'test/startup/startup_tests.scons', |
102 'test/tab_switching/tab_switching_test.scons', | 101 'test/tab_switching/tab_switching_test.scons', |
103 'test/ui/ui_tests.scons', | 102 'test/ui/ui_tests.scons', |
104 'tools/convert_dict/convert_dict.scons', | 103 'tools/convert_dict/convert_dict.scons', |
105 'tools/crash_service/crash_service.scons', | 104 'tools/crash_service/crash_service.scons', |
106 'tools/perf/flush_cache/flush_cache.scons', | |
107 'tools/profiles/generate_profile.scons', | 105 'tools/profiles/generate_profile.scons', |
108 ] | 106 ] |
109 sconscript_files = list(set(sconscript_files) - set(remove_files)) | 107 sconscript_files = list(set(sconscript_files) - set(remove_files)) |
110 | 108 |
111 SConscript(sconscript_files, exports=['env']) | 109 SConscript(sconscript_files, exports=['env']) |
OLD | NEW |