From 102ceb4133685db70ac15cb5bcb134a85736fe86 Mon Sep 17 00:00:00 2001 From: erg Date: Fri, 19 Jun 2015 18:38:13 -0700 Subject: mandoline filesystem: add a sqlite3 vfs to proxy filesystem usage. This adds a //sql/mojo library which can be linked into preexisting sqlite3 code which adds a new VFS which transparently proxies filesystem usage to the mojo:filesystem application. We create a new sql_apptests.mojo target, which currently has all the sql connection_unittests.cc (minus 2 hard ones), all statement and transaction unit tests and refactor the sql testing stuff so that we have two implementations of an SQLTestBase class: one that uses files raw and one that proxies to the filesystem process. Notably, this patch does not implement file locking, which will have to be implemented before we can safely use this, but will be a large enough patch in and of itself that I'm punting on it for this patch. BUG=493311 Review URL: https://codereview.chromium.org/1176653002 Cr-Commit-Position: refs/heads/master@{#335415} --- sql/mojo/DEPS | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 sql/mojo/DEPS (limited to 'sql/mojo/DEPS') diff --git a/sql/mojo/DEPS b/sql/mojo/DEPS new file mode 100644 index 0000000..be63411 --- /dev/null +++ b/sql/mojo/DEPS @@ -0,0 +1,6 @@ +include_rules = [ + "+components/filesystem", + "+mojo/application", + "+mojo/public", + "+mojo/util", +] -- cgit v1.1