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

Side by Side Diff: third_party/sqlite/SConscript

Issue 17602: Updates to Visual Studio project generation to accomodate... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 11 months 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 9
10 env.Prepend( 10 env.Prepend(
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 ] 131 ]
132 132
133 if env.Bit('windows'): 133 if env.Bit('windows'):
134 input_files += [ 134 input_files += [
135 'src/shell_icu.c', 135 'src/shell_icu.c',
136 ] 136 ]
137 137
138 env.ChromeLibrary('sqlite', input_files) 138 env.ChromeLibrary('sqlite', input_files)
139 139
140 env.ChromeMSVSProject('$SQLITE_DIR/sqlite.vcproj', 140 env.ChromeMSVSProject('$SQLITE_DIR/sqlite.vcproj',
141 dependencies = [
142 '$ICU38_DIR/build/icu.vcproj',
143 ],
141 guid='{6EAD4A4B-2BBC-4974-8E45-BB5C16CC2AC9}') 144 guid='{6EAD4A4B-2BBC-4974-8E45-BB5C16CC2AC9}')
142 145
143 # TODO(tc): There should be a target to build the stand alone sqlite shell. 146 # TODO(tc): There should be a target to build the stand alone sqlite shell.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698