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 Import('env') | 5 Import('env') |
6 | 6 |
7 env = env.Clone() | 7 env = env.Clone() |
8 | 8 |
9 env.SConscript([ | 9 env.SConscript([ |
10 '$BREAKPAD_DIR/using_breakpad.scons', | 10 '$BREAKPAD_DIR/using_breakpad.scons', |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 'env_vars.cc', | 147 'env_vars.cc', |
148 'env_vars.h', | 148 'env_vars.h', |
149 'filter_policy.h', | 149 'filter_policy.h', |
150 'gears_api.h', | 150 'gears_api.h', |
151 'json_value_serializer.cc', | 151 'json_value_serializer.cc', |
152 'json_value_serializer.h', | 152 'json_value_serializer.h', |
153 'jstemplate_builder.cc', | 153 'jstemplate_builder.cc', |
154 'jstemplate_builder.h', | 154 'jstemplate_builder.h', |
155 'l10n_util.cc', | 155 'l10n_util.cc', |
156 'l10n_util.h', | 156 'l10n_util.h', |
| 157 'l10n_util_posix.cc', |
157 'libxml_utils.cc', | 158 'libxml_utils.cc', |
158 'libxml_utils.h', | 159 'libxml_utils.h', |
159 'logging_chrome.cc', | 160 'logging_chrome.cc', |
160 'logging_chrome.h', | 161 'logging_chrome.h', |
161 'main_function_params.h', | 162 'main_function_params.h', |
162 'message_router.cc', | 163 'message_router.cc', |
163 'message_router.h', | 164 'message_router.h', |
164 'mru_cache.h', | 165 'mru_cache.h', |
165 'native_web_keyboard_event.h', | 166 'native_web_keyboard_event.h', |
166 'native_web_keyboard_event_linux.cc', | 167 'native_web_keyboard_event_linux.cc', |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 if not env.Bit('mac'): | 286 if not env.Bit('mac'): |
286 # Mac specific files | 287 # Mac specific files |
287 input_files.Remove( | 288 input_files.Remove( |
288 'chrome_paths_mac.cc', | 289 'chrome_paths_mac.cc', |
289 'platform_util_mac.mm', | 290 'platform_util_mac.mm', |
290 ) | 291 ) |
291 | 292 |
292 if not env.Bit('posix'): | 293 if not env.Bit('posix'): |
293 input_files.Remove( | 294 input_files.Remove( |
294 'ipc_channel_posix.cc', | 295 'ipc_channel_posix.cc', |
| 296 'l10n_util_posix.cc', |
295 ) | 297 ) |
296 | 298 |
297 if env.Bit('windows'): | 299 if env.Bit('windows'): |
298 input_files.Append( | 300 input_files.Append( |
299 'transport_dib_win.cc' | 301 'transport_dib_win.cc' |
300 ) | 302 ) |
301 | 303 |
302 if env.Bit('linux'): | 304 if env.Bit('linux'): |
303 input_files.Append( | 305 input_files.Append( |
304 '$CHROME_DIR/third_party/xdg_user_dirs/xdg_user_dir_lookup.cc', | 306 '$CHROME_DIR/third_party/xdg_user_dirs/xdg_user_dir_lookup.cc', |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 './common.vsprops', | 362 './common.vsprops', |
361 '$(SolutionDir)../build/release.vsprops', | 363 '$(SolutionDir)../build/release.vsprops', |
362 ]) | 364 ]) |
363 | 365 |
364 p.AddFileConfig('../tools/build/win/precompiled.cc', | 366 p.AddFileConfig('../tools/build/win/precompiled.cc', |
365 'Debug|Win32', | 367 'Debug|Win32', |
366 tools=[ | 368 tools=[ |
367 MSVSTool('VCCLCompilerTool', | 369 MSVSTool('VCCLCompilerTool', |
368 UsePrecompiledHeader='1'), | 370 UsePrecompiledHeader='1'), |
369 ]) | 371 ]) |
OLD | NEW |