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

Unified Diff: components/leveldb/public/cpp/BUILD.gn

Issue 1861903002: mojo leveldb: Add an iteration interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase + comments Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/leveldb/leveldb_service_unittest.cc ('k') | components/leveldb/public/cpp/remote_iterator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/leveldb/public/cpp/BUILD.gn
diff --git a/components/leveldb/public/cpp/BUILD.gn b/components/leveldb/public/cpp/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..29e773a7643a1654ca879b30310dd41ba6f1fbc2
--- /dev/null
+++ b/components/leveldb/public/cpp/BUILD.gn
@@ -0,0 +1,20 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("cpp") {
+ sources = [
+ "remote_iterator.cc",
+ "remote_iterator.h",
+ "util.cc",
+ "util.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/leveldb/public/interfaces",
+ "//mojo/common",
+ "//mojo/shell/public/cpp",
+ "//third_party/leveldatabase",
+ ]
+}
« no previous file with comments | « components/leveldb/leveldb_service_unittest.cc ('k') | components/leveldb/public/cpp/remote_iterator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698