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 25 matching lines...) Expand all Loading... |
36 '$CHROME_SRC_DIR/chrome/tools/build/win/version.bat'), | 36 '$CHROME_SRC_DIR/chrome/tools/build/win/version.bat'), |
37 PWD = Dir('.'), | 37 PWD = Dir('.'), |
38 ) | 38 ) |
39 | 39 |
40 | 40 |
41 sconscript_files = env.ChromiumLoadComponentSConscripts( | 41 sconscript_files = env.ChromiumLoadComponentSConscripts( |
42 'SConscript', | 42 'SConscript', |
43 | 43 |
44 LOAD_NAMES = ['chrome'], | 44 LOAD_NAMES = ['chrome'], |
45 | 45 |
| 46 chrome_sln = 'chrome_sln.scons', |
| 47 locales = 'app/locales/locales.scons', |
46 browser = 'browser/browser.scons', | 48 browser = 'browser/browser.scons', |
47 debugger = 'browser/debugger/debugger.scons', | 49 debugger = 'browser/debugger/debugger.scons', |
48 common = 'common/common.scons', | 50 common = 'common/common.scons', |
49 ipc_tests = 'common/ipc_tests.scons', | 51 ipc_tests = 'common/ipc_tests.scons', |
50 installer_unittests = 'installer/mini_installer/installer_unittests.scons', | 52 installer_unittests = 'installer/mini_installer/installer_unittests.scons', |
51 mini_installer = 'installer/mini_installer/mini_installer.scons', | 53 mini_installer = 'installer/mini_installer/mini_installer.scons', |
52 setup = 'installer/setup/setup.scons', | 54 setup = 'installer/setup/setup.scons', |
53 util = 'installer/util/util.scons', | 55 util = 'installer/util/util.scons', |
54 plugin = 'plugin/plugin.scons', | 56 plugin = 'plugin/plugin.scons', |
55 renderer = 'renderer/renderer.scons', | 57 renderer = 'renderer/renderer.scons', |
(...skipping 15 matching lines...) Expand all Loading... |
71 tab_switching_test = 'test/tab_switching/tab_switching_test.scons', | 73 tab_switching_test = 'test/tab_switching/tab_switching_test.scons', |
72 ui_tests = 'test/ui/ui_tests.scons', | 74 ui_tests = 'test/ui/ui_tests.scons', |
73 unit_tests = 'test/unit/unit_tests.scons', | 75 unit_tests = 'test/unit/unit_tests.scons', |
74 convert_dict = 'tools/convert_dict/convert_dict.scons', | 76 convert_dict = 'tools/convert_dict/convert_dict.scons', |
75 crash_service = 'tools/crash_service/crash_service.scons', | 77 crash_service = 'tools/crash_service/crash_service.scons', |
76 flush_cache = 'tools/perf/flush_cache/flush_cache.scons', | 78 flush_cache = 'tools/perf/flush_cache/flush_cache.scons', |
77 generate_profile = 'tools/profiles/generate_profile.scons', | 79 generate_profile = 'tools/profiles/generate_profile.scons', |
78 image_diff = 'tools/test/image_diff/image_diff.scons', | 80 image_diff = 'tools/test/image_diff/image_diff.scons', |
79 ) | 81 ) |
80 | 82 |
81 # TODO(port) | |
82 if env.AnyBits('linux', 'mac'): | |
83 remove_files = [ | |
84 'installer/mini_installer/installer_unittests.scons', | |
85 'installer/mini_installer/mini_installer.scons', | |
86 'installer/setup/setup.scons', | |
87 'installer/util/util.scons', | |
88 'test/activex_test_control/activex_test_control.scons', | |
89 'test/automated_ui_tests/automated_ui_tests.scons', | |
90 'test/automation/automation.scons', | |
91 'test/interactive_ui/interactive_ui_tests.scons', | |
92 'test/memory_test/memory_test.scons', | |
93 'test/mini_installer_test/mini_installer_test.scons', | |
94 'test/page_cycler/page_cycler_tests.scons', | |
95 'test/plugin/plugin_tests.scons', | |
96 'test/reliability/reliability_tests.scons', | |
97 'test/security_tests/security_tests.scons', | |
98 'test/selenium/selenium_tests.scons', | |
99 'test/startup/startup_tests.scons', | |
100 'test/tab_switching/tab_switching_test.scons', | |
101 'test/ui/ui_tests.scons', | |
102 'tools/convert_dict/convert_dict.scons', | |
103 'tools/crash_service/crash_service.scons', | |
104 'tools/profiles/generate_profile.scons', | |
105 ] | |
106 sconscript_files = list(set(sconscript_files) - set(remove_files)) | |
107 | |
108 SConscript(sconscript_files, exports=['env']) | 83 SConscript(sconscript_files, exports=['env']) |
OLD | NEW |