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.ApplySConscript([ | 9 env.ApplySConscript([ |
10 '$BASE_DIR/using_base.scons', | 10 '$BASE_DIR/using_base.scons', |
(...skipping 29 matching lines...) Expand all Loading... |
40 '/ignore:4199', | 40 '/ignore:4199', |
41 '/nxcompat', | 41 '/nxcompat', |
42 ], | 42 ], |
43 ) | 43 ) |
44 | 44 |
45 input_files = [ | 45 input_files = [ |
46 'main.cc', | 46 'main.cc', |
47 'crash_service.cc', | 47 'crash_service.cc', |
48 ] | 48 ] |
49 | 49 |
50 env.ChromeProgram('crash_service', input_files) | 50 # TODO(port): |
| 51 if env.Bit('windows'): |
| 52 env.ChromeProgram('crash_service', input_files) |
51 | 53 |
| 54 env.ChromeMSVSProject('$CHROME_DIR/tools/crash_service/crash_service.vcproj', |
| 55 dependencies = [ |
| 56 '$BASE_DIR/build/base.vcproj', |
| 57 '$ZLIB_DIR/zlib.vcproj', |
| 58 '$CHROME_DIR/common/common.vcproj', |
| 59 '$ICU38_DIR/build/icu.vcproj', |
| 60 '$BREAKPAD_DIR/breakpad_sender.vcproj', |
| 61 '$BASE_DIR/build/base_gfx.vcproj', |
| 62 '$BREAKPAD_DIR/breakpad_handler.vcproj', |
| 63 '$SKIA_DIR/skia.vcproj', |
| 64 ], |
| 65 guid='{89C1C190-A5D1-4EC4-BD6A-67FF2195C7CC}') |
OLD | NEW |