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

Side by Side Diff: third_party/sqlite/src/tool/mksqlite3internalh.tcl

Issue 901033002: Import SQLite 3.8.7.4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Chromium changes to support SQLite 3.8.7.4. Created 5 years, 10 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
OLDNEW
1 #!/usr/bin/tclsh 1 #!/usr/bin/tclsh
2 # 2 #
3 # To build a single huge source file holding all of SQLite (or at 3 # To build a single huge source file holding all of SQLite (or at
4 # least the core components - the test harness, shell, and TCL 4 # least the core components - the test harness, shell, and TCL
5 # interface are omitted.) first do 5 # interface are omitted.) first do
6 # 6 #
7 # make target_source 7 # make target_source
8 # 8 #
9 # The make target above moves all of the source code files into 9 # The make target above moves all of the source code files into
10 # a subdirectory named "tsrc". (This script expects to find the files 10 # a subdirectory named "tsrc". (This script expects to find the files
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 # text of the file in-line. The file only needs to be included once. 53 # text of the file in-line. The file only needs to be included once.
54 # 54 #
55 foreach hdr { 55 foreach hdr {
56 btree.h 56 btree.h
57 btreeInt.h 57 btreeInt.h
58 hash.h 58 hash.h
59 hwtime.h 59 hwtime.h
60 keywordhash.h 60 keywordhash.h
61 opcodes.h 61 opcodes.h
62 os_common.h 62 os_common.h
63 os_setup.h
64 os_win.h
63 os.h 65 os.h
64 os_os2.h
65 pager.h 66 pager.h
66 parse.h 67 parse.h
67 sqlite3ext.h 68 sqlite3ext.h
68 sqlite3.h 69 sqlite3.h
69 sqliteInt.h 70 sqliteInt.h
70 sqliteLimit.h 71 sqliteLimit.h
71 vdbe.h 72 vdbe.h
72 vdbeInt.h 73 vdbeInt.h
73 } { 74 } {
74 set available_hdr($hdr) 1 75 set available_hdr($hdr) 1
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 parse.h 138 parse.h
138 sqlite3ext.h 139 sqlite3ext.h
139 vdbe.h 140 vdbe.h
140 } { 141 } {
141 if {$available_hdr($file)} { 142 if {$available_hdr($file)} {
142 copy_file tsrc/$file 143 copy_file tsrc/$file
143 } 144 }
144 } 145 }
145 146
146 close $out 147 close $out
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698