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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/sqlite/README.google ('k') | third_party/sqlite/VERSION_DATE » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/SConscript
===================================================================
--- third_party/sqlite/SConscript (revision 7209)
+++ third_party/sqlite/SConscript (working copy)
@@ -39,56 +39,89 @@
)
input_files = [
- 'alter.c',
- 'analyze.c',
- 'attach.c',
- 'auth.c',
- 'btree.c',
- 'build.c',
- 'callback.c',
- 'complete.c',
- 'date.c',
- 'delete.c',
- 'expr.c',
- 'fts2.c',
- 'fts2_hash.c',
- 'fts2_icu.c',
- 'fts2_porter.c',
- 'fts2_tokenizer.c',
- 'fts2_tokenizer1.c',
- 'func.c',
- 'hash.c',
- 'icu.c',
- 'insert.c',
- 'legacy.c',
- 'loadext.c',
- 'main.c',
- 'malloc.c',
- 'opcodes.c',
- 'os.c',
- 'os_unix.c',
- 'os_win.c',
- 'pager.c',
- 'parse.c',
- 'pragma.c',
- 'prepare.c',
- 'printf.c',
- 'random.c',
- 'select.c',
- 'table.c',
- 'tokenize.c',
- 'trigger.c',
- 'update.c',
- 'utf.c',
- 'util.c',
- 'vacuum.c',
- 'vdbe.c',
- 'vdbeapi.c',
- 'vdbeaux.c',
- 'vdbefifo.c',
- 'vdbemem.c',
- 'vtab.c',
- 'where.c',
+ 'ext/fts2/fts2.c',
+ 'ext/fts2/fts2.h',
+ 'ext/fts2/fts2_hash.c',
+ 'ext/fts2/fts2_hash.h',
+ 'ext/fts2/fts2_icu.c',
+ 'ext/fts2/fts2_porter.c',
+ 'ext/fts2/fts2_tokenizer.c',
+ 'ext/fts2/fts2_tokenizer.h',
+ 'ext/fts2/fts2_tokenizer1.c',
+ 'ext/icu/icu.c',
+ 'preprocessed/keywordhash.h',
+ 'preprocessed/opcodes.c',
+ 'preprocessed/opcodes.h',
+ 'preprocessed/parse.c',
+ 'preprocessed/parse.h',
+ 'preprocessed/sqlite3.h',
+ 'src/alter.c',
+ 'src/analyze.c',
+ 'src/attach.c',
+ 'src/auth.c',
+ 'src/bitvec.c',
+ 'src/btmutex.c',
+ 'src/btree.c',
+ 'src/btree.h',
+ 'src/btreeInt.h',
+ 'src/build.c',
+ 'src/callback.c',
+ 'src/complete.c',
+ 'src/date.c',
+ 'src/delete.c',
+ 'src/expr.c',
+ 'src/fault.c',
+ 'src/func.c',
+ 'src/global.c',
+ 'src/hash.c',
+ 'src/hash.h',
+ 'src/insert.c',
+ 'src/legacy.c',
+ 'src/loadext.c',
+ 'src/main.c',
+ 'src/malloc.c',
+ 'src/mem1.c',
+ 'src/mem2.c',
+ 'src/mem3.c',
+ 'src/mem4.c',
+ 'src/mem5.c',
+ 'src/mem6.c',
+ 'src/mutex.c',
+ 'src/mutex.h',
+ 'src/mutex_w32.c',
+ 'src/os.c',
+ 'src/os.h',
+ 'src/os_common.h',
+ 'src/os_win.c',
+ 'src/pager.c',
+ 'src/pager.h',
+ 'src/pragma.c',
+ 'src/prepare.c',
+ 'src/printf.c',
+ 'src/random.c',
+ 'src/select.c',
+ 'src/shell_icu.c',
+ 'src/sqlite3ext.h',
+ 'src/sqliteInt.h',
+ 'src/sqliteLimit.h',
+ 'src/status.c',
+ 'src/table.c',
+ 'src/tokenize.c',
+ 'src/trigger.c',
+ 'src/update.c',
+ 'src/utf.c',
+ 'src/util.c',
+ 'src/vacuum.c',
+ 'src/vdbe.c',
+ 'src/vdbe.h',
+ 'src/vdbeInt.h',
+ 'src/vdbeapi.c',
+ 'src/vdbeaux.c',
+ 'src/vdbeblob.c',
+ 'src/vdbefifo.c',
+ 'src/vdbemem.c',
+ 'src/vtab.c',
+ 'src/where.c',
]
env.ChromeStaticLibrary('sqlite', input_files)
« 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