| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 'safe_browsing/protocol_parser.cc', | 90 'safe_browsing/protocol_parser.cc', |
| 91 'safe_browsing/safe_browsing_database.cc', | 91 'safe_browsing/safe_browsing_database.cc', |
| 92 'safe_browsing/safe_browsing_database_bloom.cc', | 92 'safe_browsing/safe_browsing_database_bloom.cc', |
| 93 'safe_browsing/safe_browsing_database_impl.cc', | 93 'safe_browsing/safe_browsing_database_impl.cc', |
| 94 'safe_browsing/safe_browsing_service.cc', | 94 'safe_browsing/safe_browsing_service.cc', |
| 95 'safe_browsing/safe_browsing_util.cc', | 95 'safe_browsing/safe_browsing_util.cc', |
| 96 'session_startup_pref.cc', | 96 'session_startup_pref.cc', |
| 97 'template_url_parser.cc', | 97 'template_url_parser.cc', |
| 98 'url_fetcher_protect.cc', | 98 'url_fetcher_protect.cc', |
| 99 'user_metrics.cc', | 99 'user_metrics.cc', |
| 100 'webdata/web_database.cc', |
| 100 ]) | 101 ]) |
| 101 | 102 |
| 102 if env['PLATFORM'] == 'win32': | 103 if env['PLATFORM'] == 'win32': |
| 103 # TODO: Port these. | 104 # TODO: Port these. |
| 104 input_files.extend([ | 105 input_files.extend([ |
| 105 'autofill_manager.cc', | 106 'autofill_manager.cc', |
| 106 'about_internets_status_view.cc', | 107 'about_internets_status_view.cc', |
| 107 'alternate_nav_url_fetcher.cc', | 108 'alternate_nav_url_fetcher.cc', |
| 108 'app_modal_dialog_queue.cc', | 109 'app_modal_dialog_queue.cc', |
| 109 'autocomplete/autocomplete.cc', | 110 'autocomplete/autocomplete.cc', |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 'view_source_contents.cc', | 281 'view_source_contents.cc', |
| 281 'visitedlink_master.cc', | 282 'visitedlink_master.cc', |
| 282 'web_app.cc', | 283 'web_app.cc', |
| 283 'web_app_icon_manager.cc', | 284 'web_app_icon_manager.cc', |
| 284 'web_app_launcher.cc', | 285 'web_app_launcher.cc', |
| 285 'web_contents.cc', | 286 'web_contents.cc', |
| 286 'web_contents_view.cc', | 287 'web_contents_view.cc', |
| 287 'web_drag_source.cc', | 288 'web_drag_source.cc', |
| 288 'web_drop_target.cc', | 289 'web_drop_target.cc', |
| 289 'webdata/web_data_service.cc', | 290 'webdata/web_data_service.cc', |
| 290 'webdata/web_database.cc', | |
| 291 'window_sizer.cc', | 291 'window_sizer.cc', |
| 292 ]) | 292 ]) |
| 293 | 293 |
| 294 env.TypeLibrary('history/history_indexer.idl') | 294 env.TypeLibrary('history/history_indexer.idl') |
| 295 | 295 |
| 296 input_files.extend([ | 296 input_files.extend([ |
| 297 'web_contents_view_win.cc', | 297 'web_contents_view_win.cc', |
| 298 'render_widget_host_view_win.cc', | 298 'render_widget_host_view_win.cc', |
| 299 ]) | 299 ]) |
| 300 | 300 |
| 301 | 301 |
| 302 if env['PLATFORM'] in ('posix', 'win32'): | 302 if env['PLATFORM'] in ('posix', 'win32'): |
| 303 # TODO: This should work for all platforms. | 303 # TODO: This should work for all platforms. |
| 304 env.ChromeStaticLibrary('browser', input_files) | 304 env.ChromeStaticLibrary('browser', input_files) |
| OLD | NEW |