| 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 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons', | 10 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons', |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 'automation/url_request_failed_dns_job.cc', | 52 'automation/url_request_failed_dns_job.cc', |
| 53 'automation/url_request_mock_http_job.cc', | 53 'automation/url_request_mock_http_job.cc', |
| 54 'automation/url_request_mock_net_error_job.cc', | 54 'automation/url_request_mock_net_error_job.cc', |
| 55 'automation/url_request_slow_download_job.cc', | 55 'automation/url_request_slow_download_job.cc', |
| 56 'browser_process.cc', | 56 'browser_process.cc', |
| 57 'cancelable_request.cc', | 57 'cancelable_request.cc', |
| 58 'chrome_thread.cc', | 58 'chrome_thread.cc', |
| 59 'cross_site_request_manager.cc', | 59 'cross_site_request_manager.cc', |
| 60 'download/save_file.cc', | 60 'download/save_file.cc', |
| 61 'extensions/extension.cc', | 61 'extensions/extension.cc', |
| 62 'extensions/extensions_service.cc', |
| 62 'google_url_tracker.cc', | 63 'google_url_tracker.cc', |
| 63 'google_util.cc', | 64 'google_util.cc', |
| 64 'history/archived_database.cc', | 65 'history/archived_database.cc', |
| 65 'history/download_database.cc', | 66 'history/download_database.cc', |
| 66 'history/expire_history_backend.cc', | 67 'history/expire_history_backend.cc', |
| 67 'history/history_backend.cc', | 68 'history/history_backend.cc', |
| 68 'history/history_database.cc', | 69 'history/history_database.cc', |
| 69 'history/history_types.cc', | 70 'history/history_types.cc', |
| 70 'history/in_memory_database.cc', | 71 'history/in_memory_database.cc', |
| 71 'history/in_memory_history_backend.cc', | 72 'history/in_memory_history_backend.cc', |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 | 297 |
| 297 input_files.extend([ | 298 input_files.extend([ |
| 298 'web_contents_view_win.cc', | 299 'web_contents_view_win.cc', |
| 299 'render_widget_host_view_win.cc', | 300 'render_widget_host_view_win.cc', |
| 300 ]) | 301 ]) |
| 301 | 302 |
| 302 | 303 |
| 303 if env['PLATFORM'] in ('posix', 'win32'): | 304 if env['PLATFORM'] in ('posix', 'win32'): |
| 304 # TODO: This should work for all platforms. | 305 # TODO: This should work for all platforms. |
| 305 env.ChromeStaticLibrary('browser', input_files) | 306 env.ChromeStaticLibrary('browser', input_files) |
| OLD | NEW |