| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 'logging_chrome.cc', | 63 'logging_chrome.cc', |
| 64 'message_router.cc', | 64 'message_router.cc', |
| 65 'net/cookie_monster_sqlite.cc', | 65 'net/cookie_monster_sqlite.cc', |
| 66 'notification_registrar.cc', | 66 'notification_registrar.cc', |
| 67 'notification_service.cc', | 67 'notification_service.cc', |
| 68 'pref_member.cc', | 68 'pref_member.cc', |
| 69 'pref_names.cc', | 69 'pref_names.cc', |
| 70 'pref_service.cc', | 70 'pref_service.cc', |
| 71 'property_bag.cc', | 71 'property_bag.cc', |
| 72 'render_messages.cc', | 72 'render_messages.cc', |
| 73 'resource_bundle.cc', |
| 73 'resource_dispatcher.cc', | 74 'resource_dispatcher.cc', |
| 74 'sandbox_init_wrapper.cc', | 75 'sandbox_init_wrapper.cc', |
| 75 'slide_animation.cc', | 76 'slide_animation.cc', |
| 76 'sqlite_compiled_statement.cc', | 77 'sqlite_compiled_statement.cc', |
| 77 'sqlite_utils.cc', | 78 'sqlite_utils.cc', |
| 78 'task_queue.cc', | 79 'task_queue.cc', |
| 79 'throb_animation.cc', | 80 'throb_animation.cc', |
| 80 'time_format.cc', | 81 'time_format.cc', |
| 81 'thumbnail_score.cc', | 82 'thumbnail_score.cc', |
| 82 'unzip.cc', | 83 'unzip.cc', |
| (...skipping 14 matching lines...) Expand all Loading... |
| 97 'gfx/icon_util.cc', | 98 'gfx/icon_util.cc', |
| 98 'gfx/path.cc', | 99 'gfx/path.cc', |
| 99 'gfx/text_elider.cc', | 100 'gfx/text_elider.cc', |
| 100 'ipc_logging.cc', | 101 'ipc_logging.cc', |
| 101 'ipc_sync_channel.cc', | 102 'ipc_sync_channel.cc', |
| 102 'jstemplate_builder.cc', | 103 'jstemplate_builder.cc', |
| 103 'net/url_request_intercept_job.cc', | 104 'net/url_request_intercept_job.cc', |
| 104 'os_exchange_data.cc', | 105 'os_exchange_data.cc', |
| 105 'plugin_messages.cc', | 106 'plugin_messages.cc', |
| 106 'process_watcher.cc', | 107 'process_watcher.cc', |
| 107 'resource_bundle.cc', | |
| 108 'security_filter_peer.cc', | 108 'security_filter_peer.cc', |
| 109 'win_safe_util.cc', | 109 'win_safe_util.cc', |
| 110 'win_util.cc', | 110 'win_util.cc', |
| 111 'worker_thread_ticker.cc', | 111 'worker_thread_ticker.cc', |
| 112 ]) | 112 ]) |
| 113 | 113 |
| 114 if env.Bit('windows'): | 114 if env.Bit('windows'): |
| 115 # Windows specific files | 115 # Windows specific files |
| 116 input_files.extend([ | 116 input_files.extend([ |
| 117 'gfx/chrome_font_win.cc', | 117 'gfx/chrome_font_win.cc', |
| (...skipping 16 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 |