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

Side by Side Diff: third_party/sqlite/src/main.mk

Issue 1748183004: [sqlite] Remove recover.c from amalgamation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@zzzzsql_ios_recover_review0
Patch Set: Created 4 years, 9 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 ############################################################################### 1 ###############################################################################
2 # The following macros should be defined before this script is 2 # The following macros should be defined before this script is
3 # invoked: 3 # invoked:
4 # 4 #
5 # TOP The toplevel directory of the source tree. This is the 5 # TOP The toplevel directory of the source tree. This is the
6 # directory that contains this "Makefile.in" and the 6 # directory that contains this "Makefile.in" and the
7 # "configure.in" script. 7 # "configure.in" script.
8 # 8 #
9 # BCC C Compiler and options for use in building executables that 9 # BCC C Compiler and options for use in building executables that
10 # will run on the platform that is doing the build. 10 # will run on the platform that is doing the build.
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 $(TOP)/src/pager.h \ 134 $(TOP)/src/pager.h \
135 $(TOP)/src/parse.y \ 135 $(TOP)/src/parse.y \
136 $(TOP)/src/pcache.c \ 136 $(TOP)/src/pcache.c \
137 $(TOP)/src/pcache.h \ 137 $(TOP)/src/pcache.h \
138 $(TOP)/src/pcache1.c \ 138 $(TOP)/src/pcache1.c \
139 $(TOP)/src/pragma.c \ 139 $(TOP)/src/pragma.c \
140 $(TOP)/src/pragma.h \ 140 $(TOP)/src/pragma.h \
141 $(TOP)/src/prepare.c \ 141 $(TOP)/src/prepare.c \
142 $(TOP)/src/printf.c \ 142 $(TOP)/src/printf.c \
143 $(TOP)/src/random.c \ 143 $(TOP)/src/random.c \
144 $(TOP)/src/recover.c \
145 $(TOP)/src/recover_varint.c \
146 $(TOP)/src/resolve.c \ 144 $(TOP)/src/resolve.c \
147 $(TOP)/src/rowset.c \ 145 $(TOP)/src/rowset.c \
148 $(TOP)/src/select.c \ 146 $(TOP)/src/select.c \
149 $(TOP)/src/status.c \ 147 $(TOP)/src/status.c \
150 $(TOP)/src/shell.c \ 148 $(TOP)/src/shell.c \
151 $(TOP)/src/sqlite.h.in \ 149 $(TOP)/src/sqlite.h.in \
152 $(TOP)/src/sqlite3ext.h \ 150 $(TOP)/src/sqlite3ext.h \
153 $(TOP)/src/sqliteInt.h \ 151 $(TOP)/src/sqliteInt.h \
154 $(TOP)/src/sqliteLimit.h \ 152 $(TOP)/src/sqliteLimit.h \
155 $(TOP)/src/table.c \ 153 $(TOP)/src/table.c \
(...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after
900 rm -f sqlite3.c sqlite3-*.c fts?amal.c tclsqlite3.c 898 rm -f sqlite3.c sqlite3-*.c fts?amal.c tclsqlite3.c
901 rm -f sqlite3rc.h 899 rm -f sqlite3rc.h
902 rm -f shell.c sqlite3ext.h 900 rm -f shell.c sqlite3ext.h
903 rm -f sqlite3_analyzer sqlite3_analyzer.exe sqlite3_analyzer.c 901 rm -f sqlite3_analyzer sqlite3_analyzer.exe sqlite3_analyzer.c
904 rm -f sqlite-*-output.vsix 902 rm -f sqlite-*-output.vsix
905 rm -f mptester mptester.exe 903 rm -f mptester mptester.exe
906 rm -f fuzzershell fuzzershell.exe 904 rm -f fuzzershell fuzzershell.exe
907 rm -f fuzzcheck fuzzcheck.exe 905 rm -f fuzzcheck fuzzcheck.exe
908 rm -f sqldiff sqldiff.exe 906 rm -f sqldiff sqldiff.exe
909 rm -f fts5.* fts5parse.* 907 rm -f fts5.* fts5parse.*
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698