| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 'chrome_paths.cc', | 48 'chrome_paths.cc', |
| 49 'chrome_switches.cc', | 49 'chrome_switches.cc', |
| 50 'common_glue.cc', | 50 'common_glue.cc', |
| 51 'debug_flags.cc', | 51 'debug_flags.cc', |
| 52 'env_vars.cc', | 52 'env_vars.cc', |
| 53 'gfx/chrome_canvas.cc', | 53 'gfx/chrome_canvas.cc', |
| 54 'gfx/color_utils.cc', | 54 'gfx/color_utils.cc', |
| 55 'ipc_channel_proxy.cc', | 55 'ipc_channel_proxy.cc', |
| 56 'ipc_message.cc', | 56 'ipc_message.cc', |
| 57 'ipc_message_utils.cc', | 57 'ipc_message_utils.cc', |
| 58 'ipc_sync_channel.cc', |
| 58 'ipc_sync_message.cc', | 59 'ipc_sync_message.cc', |
| 59 'jpeg_codec.cc', | 60 'jpeg_codec.cc', |
| 60 'json_value_serializer.cc', | 61 'json_value_serializer.cc', |
| 61 'l10n_util.cc', | 62 'l10n_util.cc', |
| 62 'libxml_utils.cc', | 63 'libxml_utils.cc', |
| 63 'logging_chrome.cc', | 64 'logging_chrome.cc', |
| 64 'message_router.cc', | 65 'message_router.cc', |
| 65 'net/cookie_monster_sqlite.cc', | 66 'net/cookie_monster_sqlite.cc', |
| 66 'net/url_request_intercept_job.cc', | 67 'net/url_request_intercept_job.cc', |
| 67 'notification_registrar.cc', | 68 'notification_registrar.cc', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 92 'child_process.cc', | 93 'child_process.cc', |
| 93 'chrome_plugin_lib.cc', | 94 'chrome_plugin_lib.cc', |
| 94 'chrome_plugin_util.cc', | 95 'chrome_plugin_util.cc', |
| 95 'chrome_process_filter.cc', | 96 'chrome_process_filter.cc', |
| 96 'drag_drop_types.cc', | 97 'drag_drop_types.cc', |
| 97 'gfx/emf.cc', | 98 'gfx/emf.cc', |
| 98 'gfx/icon_util.cc', | 99 'gfx/icon_util.cc', |
| 99 'gfx/path.cc', | 100 'gfx/path.cc', |
| 100 'gfx/text_elider.cc', | 101 'gfx/text_elider.cc', |
| 101 'ipc_logging.cc', | 102 'ipc_logging.cc', |
| 102 'ipc_sync_channel.cc', | |
| 103 'jstemplate_builder.cc', | 103 'jstemplate_builder.cc', |
| 104 'os_exchange_data.cc', | 104 'os_exchange_data.cc', |
| 105 'plugin_messages.cc', | 105 'plugin_messages.cc', |
| 106 'process_watcher.cc', | 106 'process_watcher.cc', |
| 107 'security_filter_peer.cc', | 107 'security_filter_peer.cc', |
| 108 'win_safe_util.cc', | 108 'win_safe_util.cc', |
| 109 'win_util.cc', | 109 'win_util.cc', |
| 110 ]) | 110 ]) |
| 111 | 111 |
| 112 if env.Bit('windows'): | 112 if env.Bit('windows'): |
| (...skipping 21 matching lines...) Expand all Loading... |
| 134 if not env.Bit('mac'): | 134 if not env.Bit('mac'): |
| 135 # TODO(port): This should be enabled for all platforms. | 135 # TODO(port): This should be enabled for all platforms. |
| 136 env.ChromeLibrary('common', input_files) | 136 env.ChromeLibrary('common', input_files) |
| 137 | 137 |
| 138 env.ChromeMSVSProject('$CHROME_DIR/common/common.vcproj', | 138 env.ChromeMSVSProject('$CHROME_DIR/common/common.vcproj', |
| 139 dependencies = [ | 139 dependencies = [ |
| 140 '$LIBXML_DIR/build/libxml_config.vcproj', | 140 '$LIBXML_DIR/build/libxml_config.vcproj', |
| 141 '$CHROME_DIR/app/generated_resources.vcproj', | 141 '$CHROME_DIR/app/generated_resources.vcproj', |
| 142 ], | 142 ], |
| 143 guid='{899F1280-3441-4D1F-BA04-CCD6208D9146}') | 143 guid='{899F1280-3441-4D1F-BA04-CCD6208D9146}') |
| OLD | NEW |