| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 ]) | 127 ]) |
| 128 | 128 |
| 129 if env.Bit('posix'): | 129 if env.Bit('posix'): |
| 130 input_files.extend([ | 130 input_files.extend([ |
| 131 'ipc_channel_posix.cc', | 131 'ipc_channel_posix.cc', |
| 132 ]) | 132 ]) |
| 133 | 133 |
| 134 | 134 |
| 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.ChromeLibrary('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 |