| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 'renderer_security_policy.cc', | 94 'renderer_security_policy.cc', |
| 95 'safe_browsing/bloom_filter.cc', | 95 'safe_browsing/bloom_filter.cc', |
| 96 'safe_browsing/chunk_range.cc', | 96 'safe_browsing/chunk_range.cc', |
| 97 'safe_browsing/protocol_parser.cc', | 97 'safe_browsing/protocol_parser.cc', |
| 98 'safe_browsing/safe_browsing_database.cc', | 98 'safe_browsing/safe_browsing_database.cc', |
| 99 'safe_browsing/safe_browsing_database_bloom.cc', | 99 'safe_browsing/safe_browsing_database_bloom.cc', |
| 100 'safe_browsing/safe_browsing_database_impl.cc', | 100 'safe_browsing/safe_browsing_database_impl.cc', |
| 101 'safe_browsing/safe_browsing_service.cc', | 101 'safe_browsing/safe_browsing_service.cc', |
| 102 'safe_browsing/safe_browsing_util.cc', | 102 'safe_browsing/safe_browsing_util.cc', |
| 103 'session_startup_pref.cc', | 103 'session_startup_pref.cc', |
| 104 'spellcheck_worditerator.cc', |
| 105 'spellchecker.cc', |
| 104 'template_url_parser.cc', | 106 'template_url_parser.cc', |
| 105 'url_fetcher_protect.cc', | 107 'url_fetcher_protect.cc', |
| 106 'user_metrics.cc', | 108 'user_metrics.cc', |
| 107 ]) | 109 ]) |
| 108 | 110 |
| 109 if env['PLATFORM'] == 'win32': | 111 if env['PLATFORM'] == 'win32': |
| 110 # TODO: Port these. | 112 # TODO: Port these. |
| 111 input_files.extend([ | 113 input_files.extend([ |
| 112 'autofill_manager.cc', | 114 'autofill_manager.cc', |
| 113 'about_internets_status_view.cc', | 115 'about_internets_status_view.cc', |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 'sessions/base_session_service.cc', | 256 'sessions/base_session_service.cc', |
| 255 'sessions/session_backend.cc', | 257 'sessions/session_backend.cc', |
| 256 'sessions/session_command.cc', | 258 'sessions/session_command.cc', |
| 257 'sessions/session_id.cc', | 259 'sessions/session_id.cc', |
| 258 'sessions/session_restore.cc', | 260 'sessions/session_restore.cc', |
| 259 'sessions/session_service.cc', | 261 'sessions/session_service.cc', |
| 260 'sessions/session_types.cc', | 262 'sessions/session_types.cc', |
| 261 'sessions/tab_restore_service.cc', | 263 'sessions/tab_restore_service.cc', |
| 262 'shell_integration.cc', | 264 'shell_integration.cc', |
| 263 'site_instance.cc', | 265 'site_instance.cc', |
| 264 'spellcheck_worditerator.cc', | |
| 265 'spellchecker.cc', | |
| 266 'ssl_blocking_page.cc', | 266 'ssl_blocking_page.cc', |
| 267 'ssl_error_info.cc', | 267 'ssl_error_info.cc', |
| 268 'ssl_manager.cc', | 268 'ssl_manager.cc', |
| 269 'ssl_policy.cc', | 269 'ssl_policy.cc', |
| 270 'status_view.cc', | 270 'status_view.cc', |
| 271 'suspend_controller.cc', | 271 'suspend_controller.cc', |
| 272 'tab_contents.cc', | 272 'tab_contents.cc', |
| 273 'tab_contents_factory.cc', | 273 'tab_contents_factory.cc', |
| 274 'tab_util.cc', | 274 'tab_util.cc', |
| 275 'tabs/tab_strip_model.cc', | 275 'tabs/tab_strip_model.cc', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 302 | 302 |
| 303 input_files.extend([ | 303 input_files.extend([ |
| 304 'web_contents_view_win.cc', | 304 'web_contents_view_win.cc', |
| 305 'render_widget_host_view_win.cc', | 305 'render_widget_host_view_win.cc', |
| 306 ]) | 306 ]) |
| 307 | 307 |
| 308 | 308 |
| 309 if env['PLATFORM'] in ('posix', 'win32'): | 309 if env['PLATFORM'] in ('posix', 'win32'): |
| 310 # TODO: This should work for all platforms. | 310 # TODO: This should work for all platforms. |
| 311 env.ChromeStaticLibrary('browser', input_files) | 311 env.ChromeStaticLibrary('browser', input_files) |
| OLD | NEW |