| 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 29 matching lines...) Expand all Loading... |
| 40 ) | 40 ) |
| 41 | 41 |
| 42 input_files = [] | 42 input_files = [] |
| 43 | 43 |
| 44 if env['PLATFORM'] in ('posix', 'win32'): | 44 if env['PLATFORM'] in ('posix', 'win32'): |
| 45 # TODO(port): Port to Mac. | 45 # TODO(port): Port to Mac. |
| 46 input_files.extend([ | 46 input_files.extend([ |
| 47 'animation.cc', | 47 'animation.cc', |
| 48 'chrome_constants.cc', | 48 'chrome_constants.cc', |
| 49 'chrome_counters.cc', | 49 'chrome_counters.cc', |
| 50 'chrome_paths.cc', |
| 50 'chrome_switches.cc', | 51 'chrome_switches.cc', |
| 51 'debug_flags.cc', | 52 'debug_flags.cc', |
| 52 'env_vars.cc', | 53 'env_vars.cc', |
| 53 'gfx/color_utils.cc', | 54 'gfx/color_utils.cc', |
| 54 'ipc_message.cc', | 55 'ipc_message.cc', |
| 55 'jpeg_codec.cc', | 56 'jpeg_codec.cc', |
| 56 'json_value_serializer.cc', | 57 'json_value_serializer.cc', |
| 57 'libxml_utils.cc', | 58 'libxml_utils.cc', |
| 59 'logging_chrome.cc', |
| 58 'net/cookie_monster_sqlite.cc', | 60 'net/cookie_monster_sqlite.cc', |
| 61 'notification_registrar.cc', |
| 59 'notification_service.cc', | 62 'notification_service.cc', |
| 60 'pref_member.cc', | 63 'pref_member.cc', |
| 61 'pref_names.cc', | 64 'pref_names.cc', |
| 62 'slide_animation.cc', | 65 'slide_animation.cc', |
| 63 'sqlite_compiled_statement.cc', | 66 'sqlite_compiled_statement.cc', |
| 64 'sqlite_utils.cc', | 67 'sqlite_utils.cc', |
| 65 'task_queue.cc', | 68 'task_queue.cc', |
| 66 'throb_animation.cc', | 69 'throb_animation.cc', |
| 67 'thumbnail_score.cc', | 70 'thumbnail_score.cc', |
| 68 'visitedlink_common.cc', | 71 'visitedlink_common.cc', |
| 69 ]) | 72 ]) |
| 70 | 73 |
| 71 if env['PLATFORM'] == 'win32': | 74 if env['PLATFORM'] == 'win32': |
| 72 # TODO(port): Port these. | 75 # TODO(port): Port these. |
| 73 input_files.extend([ | 76 input_files.extend([ |
| 74 'child_process.cc', | 77 'child_process.cc', |
| 75 'chrome_paths.cc', | |
| 76 'chrome_plugin_lib.cc', | 78 'chrome_plugin_lib.cc', |
| 77 'chrome_plugin_util.cc', | 79 'chrome_plugin_util.cc', |
| 78 'chrome_process_filter.cc', | 80 'chrome_process_filter.cc', |
| 79 'classfactory.cc', | 81 'classfactory.cc', |
| 80 'clipboard_service.cc', | 82 'clipboard_service.cc', |
| 81 'common_glue.cc', | 83 'common_glue.cc', |
| 82 'drag_drop_types.cc', | 84 'drag_drop_types.cc', |
| 83 'gfx/chrome_canvas.cc', | 85 'gfx/chrome_canvas.cc', |
| 84 'gfx/chrome_font.cc', | 86 'gfx/chrome_font.cc', |
| 85 'gfx/emf.cc', | 87 'gfx/emf.cc', |
| 86 'gfx/icon_util.cc', | 88 'gfx/icon_util.cc', |
| 87 'gfx/path.cc', | 89 'gfx/path.cc', |
| 88 'gfx/url_elider.cc', | 90 'gfx/url_elider.cc', |
| 89 'ipc_channel.cc', | 91 'ipc_channel.cc', |
| 90 'ipc_channel_proxy.cc', | 92 'ipc_channel_proxy.cc', |
| 91 'ipc_logging.cc', | 93 'ipc_logging.cc', |
| 92 'ipc_message_utils.cc', | 94 'ipc_message_utils.cc', |
| 93 'ipc_sync_channel.cc', | 95 'ipc_sync_channel.cc', |
| 94 'ipc_sync_message.cc', | 96 'ipc_sync_message.cc', |
| 95 'jstemplate_builder.cc', | 97 'jstemplate_builder.cc', |
| 96 'l10n_util.cc', | 98 'l10n_util.cc', |
| 97 'logging_chrome.cc', | |
| 98 'message_router.cc', | 99 'message_router.cc', |
| 99 'net/url_request_intercept_job.cc', | 100 'net/url_request_intercept_job.cc', |
| 100 'notification_registrar.cc', | |
| 101 'os_exchange_data.cc', | 101 'os_exchange_data.cc', |
| 102 'plugin_messages.cc', | 102 'plugin_messages.cc', |
| 103 'pref_service.cc', | 103 'pref_service.cc', |
| 104 'process_watcher.cc', | 104 'process_watcher.cc', |
| 105 'render_messages.cc', | 105 'render_messages.cc', |
| 106 'resource_bundle.cc', | 106 'resource_bundle.cc', |
| 107 'resource_dispatcher.cc', | 107 'resource_dispatcher.cc', |
| 108 'security_filter_peer.cc', | 108 'security_filter_peer.cc', |
| 109 'time_format.cc', | 109 'time_format.cc', |
| 110 'win_safe_util.cc', | 110 'win_safe_util.cc', |
| 111 'win_util.cc', | 111 'win_util.cc', |
| 112 'worker_thread_ticker.cc', | 112 'worker_thread_ticker.cc', |
| 113 ]) | 113 ]) |
| 114 | 114 |
| 115 if env['PLATFORM'] in ('posix', 'win32'): | 115 if env['PLATFORM'] in ('posix', 'win32'): |
| 116 # TODO(port): This should be enabled for all platforms. | 116 # TODO(port): This should be enabled for all platforms. |
| 117 env.ChromeStaticLibrary('common', input_files) | 117 env.ChromeStaticLibrary('common', input_files) |
| OLD | NEW |