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

Side by Side Diff: third_party/sqlite/SConscript

Issue 15067: Upgrade our sqlite to 3.6.1, with the local changes made by Gears. I'm... (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/sqlite/README.google ('k') | third_party/sqlite/VERSION_DATE » ('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 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 21 matching lines...) Expand all
32 env.Append( 32 env.Append(
33 CCFLAGS = [ 33 CCFLAGS = [
34 '/TC', 34 '/TC',
35 35
36 '/wd4800', 36 '/wd4800',
37 '/wd4244', 37 '/wd4244',
38 ], 38 ],
39 ) 39 )
40 40
41 input_files = [ 41 input_files = [
42 'alter.c', 42 'ext/fts2/fts2.c',
43 'analyze.c', 43 'ext/fts2/fts2.h',
44 'attach.c', 44 'ext/fts2/fts2_hash.c',
45 'auth.c', 45 'ext/fts2/fts2_hash.h',
46 'btree.c', 46 'ext/fts2/fts2_icu.c',
47 'build.c', 47 'ext/fts2/fts2_porter.c',
48 'callback.c', 48 'ext/fts2/fts2_tokenizer.c',
49 'complete.c', 49 'ext/fts2/fts2_tokenizer.h',
50 'date.c', 50 'ext/fts2/fts2_tokenizer1.c',
51 'delete.c', 51 'ext/icu/icu.c',
52 'expr.c', 52 'preprocessed/keywordhash.h',
53 'fts2.c', 53 'preprocessed/opcodes.c',
54 'fts2_hash.c', 54 'preprocessed/opcodes.h',
55 'fts2_icu.c', 55 'preprocessed/parse.c',
56 'fts2_porter.c', 56 'preprocessed/parse.h',
57 'fts2_tokenizer.c', 57 'preprocessed/sqlite3.h',
58 'fts2_tokenizer1.c', 58 'src/alter.c',
59 'func.c', 59 'src/analyze.c',
60 'hash.c', 60 'src/attach.c',
61 'icu.c', 61 'src/auth.c',
62 'insert.c', 62 'src/bitvec.c',
63 'legacy.c', 63 'src/btmutex.c',
64 'loadext.c', 64 'src/btree.c',
65 'main.c', 65 'src/btree.h',
66 'malloc.c', 66 'src/btreeInt.h',
67 'opcodes.c', 67 'src/build.c',
68 'os.c', 68 'src/callback.c',
69 'os_unix.c', 69 'src/complete.c',
70 'os_win.c', 70 'src/date.c',
71 'pager.c', 71 'src/delete.c',
72 'parse.c', 72 'src/expr.c',
73 'pragma.c', 73 'src/fault.c',
74 'prepare.c', 74 'src/func.c',
75 'printf.c', 75 'src/global.c',
76 'random.c', 76 'src/hash.c',
77 'select.c', 77 'src/hash.h',
78 'table.c', 78 'src/insert.c',
79 'tokenize.c', 79 'src/legacy.c',
80 'trigger.c', 80 'src/loadext.c',
81 'update.c', 81 'src/main.c',
82 'utf.c', 82 'src/malloc.c',
83 'util.c', 83 'src/mem1.c',
84 'vacuum.c', 84 'src/mem2.c',
85 'vdbe.c', 85 'src/mem3.c',
86 'vdbeapi.c', 86 'src/mem4.c',
87 'vdbeaux.c', 87 'src/mem5.c',
88 'vdbefifo.c', 88 'src/mem6.c',
89 'vdbemem.c', 89 'src/mutex.c',
90 'vtab.c', 90 'src/mutex.h',
91 'where.c', 91 'src/mutex_w32.c',
92 'src/os.c',
93 'src/os.h',
94 'src/os_common.h',
95 'src/os_win.c',
96 'src/pager.c',
97 'src/pager.h',
98 'src/pragma.c',
99 'src/prepare.c',
100 'src/printf.c',
101 'src/random.c',
102 'src/select.c',
103 'src/shell_icu.c',
104 'src/sqlite3ext.h',
105 'src/sqliteInt.h',
106 'src/sqliteLimit.h',
107 'src/status.c',
108 'src/table.c',
109 'src/tokenize.c',
110 'src/trigger.c',
111 'src/update.c',
112 'src/utf.c',
113 'src/util.c',
114 'src/vacuum.c',
115 'src/vdbe.c',
116 'src/vdbe.h',
117 'src/vdbeInt.h',
118 'src/vdbeapi.c',
119 'src/vdbeaux.c',
120 'src/vdbeblob.c',
121 'src/vdbefifo.c',
122 'src/vdbemem.c',
123 'src/vtab.c',
124 'src/where.c',
92 ] 125 ]
93 126
94 env.ChromeStaticLibrary('sqlite', input_files) 127 env.ChromeStaticLibrary('sqlite', input_files)
95 128
96 # TODO(tc): There should be a target to build the stand alone sqlite shell. 129 # TODO(tc): There should be a target to build the stand alone sqlite shell.
OLDNEW
« no previous file with comments | « third_party/sqlite/README.google ('k') | third_party/sqlite/VERSION_DATE » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698