| 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 25 matching lines...) Expand all Loading... |
| 36 env.Prepend( | 36 env.Prepend( |
| 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 'animation.cc', | 45 'animation.cc', |
| 46 'child_process.cc', |
| 46 'chrome_constants.cc', | 47 'chrome_constants.cc', |
| 47 'chrome_counters.cc', | 48 'chrome_counters.cc', |
| 48 'chrome_paths.cc', | 49 'chrome_paths.cc', |
| 49 'chrome_switches.cc', | 50 'chrome_switches.cc', |
| 50 'common_glue.cc', | 51 'common_glue.cc', |
| 51 'debug_flags.cc', | 52 'debug_flags.cc', |
| 52 'env_vars.cc', | 53 'env_vars.cc', |
| 53 'gfx/chrome_canvas.cc', | 54 'gfx/chrome_canvas.cc', |
| 54 'gfx/color_utils.cc', | 55 'gfx/color_utils.cc', |
| 55 'ipc_channel_proxy.cc', | 56 'ipc_channel_proxy.cc', |
| (...skipping 27 matching lines...) Expand all Loading... |
| 83 'time_format.cc', | 84 'time_format.cc', |
| 84 'thumbnail_score.cc', | 85 'thumbnail_score.cc', |
| 85 'unzip.cc', | 86 'unzip.cc', |
| 86 'visitedlink_common.cc', | 87 'visitedlink_common.cc', |
| 87 'worker_thread_ticker.cc', | 88 'worker_thread_ticker.cc', |
| 88 ]) | 89 ]) |
| 89 | 90 |
| 90 if env.Bit('windows'): | 91 if env.Bit('windows'): |
| 91 # TODO(port): Port these. | 92 # TODO(port): Port these. |
| 92 input_files.extend([ | 93 input_files.extend([ |
| 93 'child_process.cc', | |
| 94 'chrome_plugin_lib.cc', | 94 'chrome_plugin_lib.cc', |
| 95 'chrome_plugin_util.cc', | 95 'chrome_plugin_util.cc', |
| 96 'chrome_process_filter.cc', | 96 'chrome_process_filter.cc', |
| 97 'drag_drop_types.cc', | 97 'drag_drop_types.cc', |
| 98 'gfx/emf.cc', | 98 'gfx/emf.cc', |
| 99 'gfx/icon_util.cc', | 99 'gfx/icon_util.cc', |
| 100 'gfx/path.cc', | 100 'gfx/path.cc', |
| 101 'gfx/text_elider.cc', | 101 'gfx/text_elider.cc', |
| 102 'ipc_logging.cc', | 102 'ipc_logging.cc', |
| 103 'jstemplate_builder.cc', | 103 'jstemplate_builder.cc', |
| (...skipping 30 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 |