| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 unit_tests = 'test/unit/unit_tests.scons', | 91 unit_tests = 'test/unit/unit_tests.scons', |
| 92 | 92 |
| 93 convert_dict = 'tools/convert_dict/convert_dict.scons', | 93 convert_dict = 'tools/convert_dict/convert_dict.scons', |
| 94 crash_service = 'tools/crash_service/crash_service.scons', | 94 crash_service = 'tools/crash_service/crash_service.scons', |
| 95 flush_cache = 'tools/perf/flush_cache/flush_cache.scons', | 95 flush_cache = 'tools/perf/flush_cache/flush_cache.scons', |
| 96 generate_profile = 'tools/profiles/generate_profile.scons', | 96 generate_profile = 'tools/profiles/generate_profile.scons', |
| 97 image_diff = 'tools/test/image_diff/image_diff.scons', | 97 image_diff = 'tools/test/image_diff/image_diff.scons', |
| 98 ) | 98 ) |
| 99 | 99 |
| 100 SConscript(sconscript_files, exports=['env']) | 100 SConscript(sconscript_files, exports=['env']) |
| OLD | NEW |