| 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 26 matching lines...) Expand all Loading... |
| 37 CPPPATH = [ | 37 CPPPATH = [ |
| 38 '$CHROME_DIR/tools/build/win', | 38 '$CHROME_DIR/tools/build/win', |
| 39 ], | 39 ], |
| 40 ) | 40 ) |
| 41 | 41 |
| 42 input_files = [] | 42 input_files = [] |
| 43 | 43 |
| 44 input_files.extend([ | 44 input_files.extend([ |
| 45 'ipc_channel_proxy.cc', | 45 'ipc_channel_proxy.cc', |
| 46 'ipc_sync_message.cc', | 46 'ipc_sync_message.cc', |
| 47 'message_router.cc', |
| 48 'render_messages.cc', |
| 47 ]) | 49 ]) |
| 48 | 50 |
| 49 if not env.Bit('mac'): | 51 if not env.Bit('mac'): |
| 50 # TODO(port): Port to Mac. | 52 # TODO(port): Port to Mac. |
| 51 input_files.extend([ | 53 input_files.extend([ |
| 52 'animation.cc', | 54 'animation.cc', |
| 53 'chrome_constants.cc', | 55 'chrome_constants.cc', |
| 54 'chrome_counters.cc', | 56 'chrome_counters.cc', |
| 55 'chrome_paths.cc', | 57 'chrome_paths.cc', |
| 56 'chrome_switches.cc', | 58 'chrome_switches.cc', |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 'drag_drop_types.cc', | 95 'drag_drop_types.cc', |
| 94 'gfx/chrome_canvas_win.cc', | 96 'gfx/chrome_canvas_win.cc', |
| 95 'gfx/emf.cc', | 97 'gfx/emf.cc', |
| 96 'gfx/icon_util.cc', | 98 'gfx/icon_util.cc', |
| 97 'gfx/path.cc', | 99 'gfx/path.cc', |
| 98 'gfx/text_elider.cc', | 100 'gfx/text_elider.cc', |
| 99 'ipc_logging.cc', | 101 'ipc_logging.cc', |
| 100 'ipc_sync_channel.cc', | 102 'ipc_sync_channel.cc', |
| 101 'jstemplate_builder.cc', | 103 'jstemplate_builder.cc', |
| 102 'l10n_util.cc', | 104 'l10n_util.cc', |
| 103 'message_router.cc', | |
| 104 'net/url_request_intercept_job.cc', | 105 'net/url_request_intercept_job.cc', |
| 105 'os_exchange_data.cc', | 106 'os_exchange_data.cc', |
| 106 'plugin_messages.cc', | 107 'plugin_messages.cc', |
| 107 'process_watcher.cc', | 108 'process_watcher.cc', |
| 108 'render_messages.cc', | |
| 109 'resource_bundle.cc', | 109 'resource_bundle.cc', |
| 110 'resource_dispatcher.cc', | 110 'resource_dispatcher.cc', |
| 111 'security_filter_peer.cc', | 111 'security_filter_peer.cc', |
| 112 'win_safe_util.cc', | 112 'win_safe_util.cc', |
| 113 'win_util.cc', | 113 'win_util.cc', |
| 114 'worker_thread_ticker.cc', | 114 'worker_thread_ticker.cc', |
| 115 ]) | 115 ]) |
| 116 | 116 |
| 117 if env.Bit('windows'): | 117 if env.Bit('windows'): |
| 118 # Windows specific files | 118 # Windows specific files |
| (...skipping 16 matching lines...) Expand all Loading... |
| 135 if not env.Bit('mac'): | 135 if not env.Bit('mac'): |
| 136 # TODO(port): This should be enabled for all platforms. | 136 # TODO(port): This should be enabled for all platforms. |
| 137 env.ChromeStaticLibrary('common', input_files) | 137 env.ChromeStaticLibrary('common', input_files) |
| 138 | 138 |
| 139 env.ChromeMSVSProject('$CHROME_DIR/common/common.vcproj', | 139 env.ChromeMSVSProject('$CHROME_DIR/common/common.vcproj', |
| 140 dependencies = [ | 140 dependencies = [ |
| 141 '$LIBXML_DIR/build/libxml_config.vcproj', | 141 '$LIBXML_DIR/build/libxml_config.vcproj', |
| 142 '$CHROME_DIR/app/generated_resources.vcproj', | 142 '$CHROME_DIR/app/generated_resources.vcproj', |
| 143 ], | 143 ], |
| 144 guid='{899F1280-3441-4D1F-BA04-CCD6208D9146}') | 144 guid='{899F1280-3441-4D1F-BA04-CCD6208D9146}') |
| OLD | NEW |