| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 'history/text_database.cc', | 75 'history/text_database.cc', |
| 76 'history/text_database_manager.cc', | 76 'history/text_database_manager.cc', |
| 77 'history/thumbnail_database.cc', | 77 'history/thumbnail_database.cc', |
| 78 'history/query_parser.cc', | 78 'history/query_parser.cc', |
| 79 'history/visit_database.cc', | 79 'history/visit_database.cc', |
| 80 'history/visit_tracker.cc', | 80 'history/visit_tracker.cc', |
| 81 'history/visitsegment_database.cc', | 81 'history/visitsegment_database.cc', |
| 82 'meta_table_helper.cc', | 82 'meta_table_helper.cc', |
| 83 'metrics_response.cc', | 83 'metrics_response.cc', |
| 84 'net/dns_host_info.cc', | 84 'net/dns_host_info.cc', |
| 85 'net/sdch_dictionary_fetcher.cc', |
| 86 'net/referrer.cc', |
| 85 'page_state.cc', | 87 'page_state.cc', |
| 86 'printing/page_number.cc', | 88 'printing/page_number.cc', |
| 87 'printing/page_setup.cc', | 89 'printing/page_setup.cc', |
| 88 'printing/page_range.cc', | 90 'printing/page_range.cc', |
| 89 'printing/units.cc', | 91 'printing/units.cc', |
| 90 'renderer_security_policy.cc', | 92 'renderer_security_policy.cc', |
| 91 'safe_browsing/bloom_filter.cc', | 93 'safe_browsing/bloom_filter.cc', |
| 92 'safe_browsing/chunk_range.cc', | 94 'safe_browsing/chunk_range.cc', |
| 93 'safe_browsing/protocol_parser.cc', | 95 'safe_browsing/protocol_parser.cc', |
| 94 'safe_browsing/safe_browsing_database.cc', | 96 'safe_browsing/safe_browsing_database.cc', |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 'memory_details.cc', | 211 'memory_details.cc', |
| 210 'metrics_log.cc', | 212 'metrics_log.cc', |
| 211 'metrics_service.cc', | 213 'metrics_service.cc', |
| 212 'modal_html_dialog_delegate.cc', | 214 'modal_html_dialog_delegate.cc', |
| 213 'native_ui_contents.cc', | 215 'native_ui_contents.cc', |
| 214 'navigation_controller.cc', | 216 'navigation_controller.cc', |
| 215 'navigation_entry.cc', | 217 'navigation_entry.cc', |
| 216 'net/dns_global.cc', | 218 'net/dns_global.cc', |
| 217 'net/dns_master.cc', | 219 'net/dns_master.cc', |
| 218 'net/dns_slave.cc', | 220 'net/dns_slave.cc', |
| 219 'net/referrer.cc', | |
| 220 'net/sdch_dictionary_fetcher.cc', | |
| 221 'network_status_view.cc', | 221 'network_status_view.cc', |
| 222 'google_update.cc', | 222 'google_update.cc', |
| 223 'password_form_manager.cc', | 223 'password_form_manager.cc', |
| 224 'password_manager.cc', | 224 'password_manager.cc', |
| 225 'plugin_installer.cc', | 225 'plugin_installer.cc', |
| 226 'plugin_process_host.cc', | 226 'plugin_process_host.cc', |
| 227 'plugin_service.cc', | 227 'plugin_service.cc', |
| 228 'printing/page_overlays.cc', | 228 'printing/page_overlays.cc', |
| 229 'printing/print_job.cc', | 229 'printing/print_job.cc', |
| 230 'printing/print_job_manager.cc', | 230 'printing/print_job_manager.cc', |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 | 299 |
| 300 input_files.extend([ | 300 input_files.extend([ |
| 301 'web_contents_view_win.cc', | 301 'web_contents_view_win.cc', |
| 302 'render_widget_host_view_win.cc', | 302 'render_widget_host_view_win.cc', |
| 303 ]) | 303 ]) |
| 304 | 304 |
| 305 | 305 |
| 306 if env['PLATFORM'] in ('posix', 'win32'): | 306 if env['PLATFORM'] in ('posix', 'win32'): |
| 307 # TODO: This should work for all platforms. | 307 # TODO: This should work for all platforms. |
| 308 env.ChromeStaticLibrary('browser', input_files) | 308 env.ChromeStaticLibrary('browser', input_files) |
| OLD | NEW |