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

Side by Side Diff: third_party/modp_b64/modp_b64.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
« no previous file with comments | « third_party/lzma_sdk/lzma_sdk.scons ('k') | third_party/scons/scons-local/SCons/Environment.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 __doc__ = """ 5 __doc__ = """
6 Configuration for building modp_b64.lib / libmodp_b64.a. 6 Configuration for building modp_b64.lib / libmodp_b64.a.
7 """ 7 """
8 8
9 Import('env') 9 Import('env')
10 10
11 env = env.Clone( 11 env = env.Clone(
12 PDB = 'vc80.pdb', 12 PDB = 'vc80.pdb',
13 ) 13 )
14 14
15 env.Prepend( 15 env.Prepend(
16 CPPPATH = [ 16 CPPPATH = [
17 '$CHROME_SRC_DIR', 17 '$CHROME_SRC_DIR',
18 ], 18 ],
19 ) 19 )
20 20
21 input_files = [ 21 input_files = [
22 'modp_b64.cc', 22 'modp_b64.cc',
23 ] 23 ]
24 24
25 env.ChromeStaticLibrary('modp_b64', input_files) 25 env.ChromeStaticLibrary('modp_b64', input_files)
26
27 env.ChromeMSVSProject('$MODP_B64_DIR/modp_b64.vcproj',
28 guid='{7100F41F-868D-4E99-80A2-AF8E6574749D}')
OLDNEW
« no previous file with comments | « third_party/lzma_sdk/lzma_sdk.scons ('k') | third_party/scons/scons-local/SCons/Environment.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698