Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(207)

Side by Side Diff: chrome/tools/crash_service/crash_service.scons

Issue 14472: Initial generation of native Visual Studio solution files... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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}')
OLDNEW
« no previous file with comments | « chrome/tools/convert_dict/convert_dict.scons ('k') | chrome/tools/perf/flush_cache/flush_cache.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698