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

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

Issue 1610963002: Import SQLite 3.10.2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « third_party/sqlite/src/tool/mksqlite3h.tcl ('k') | third_party/sqlite/src/tool/mkvsix.tcl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 # These are the header files used by SQLite. The first time any of these 51 # These are the header files used by SQLite. The first time any of these
52 # files are seen in a #include statement in the C code, include the complete 52 # files are seen in a #include statement in the C code, include the complete
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 msvc.h
61 opcodes.h 62 opcodes.h
62 os_common.h 63 os_common.h
63 os_setup.h 64 os_setup.h
64 os_win.h 65 os_win.h
65 os.h 66 os.h
66 pager.h 67 pager.h
67 parse.h 68 parse.h
68 sqlite3ext.h 69 sqlite3ext.h
69 sqlite3.h 70 sqlite3.h
70 sqliteInt.h 71 sqliteInt.h
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 parse.h 139 parse.h
139 sqlite3ext.h 140 sqlite3ext.h
140 vdbe.h 141 vdbe.h
141 } { 142 } {
142 if {$available_hdr($file)} { 143 if {$available_hdr($file)} {
143 copy_file tsrc/$file 144 copy_file tsrc/$file
144 } 145 }
145 } 146 }
146 147
147 close $out 148 close $out
OLDNEW
« no previous file with comments | « third_party/sqlite/src/tool/mksqlite3h.tcl ('k') | third_party/sqlite/src/tool/mkvsix.tcl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698