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

Unified Diff: components/leveldb/leveldb.gyp

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/BUILD.gn ('k') | components/leveldb/leveldb_database_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/leveldb/leveldb.gyp
diff --git a/components/leveldb/leveldb.gyp b/components/leveldb/leveldb.gyp
index 7c367bc43aff6ebe6940f631fdcb1d662f97ddd9..6d1a8eff6161edd70fe47af9a4e508cf9568a99d 100644
--- a/components/leveldb/leveldb.gyp
+++ b/components/leveldb/leveldb.gyp
@@ -26,11 +26,9 @@
'leveldb_mojo_proxy.h',
'leveldb_service_impl.cc',
'leveldb_service_impl.h',
- 'util.cc',
- 'util.h',
],
'dependencies': [
- 'leveldb_bindings_mojom',
+ 'leveldb_public_lib',
'../../components/filesystem/filesystem.gyp:filesystem_lib',
'../../mojo/mojo_base.gyp:mojo_application_base',
'../../mojo/mojo_public.gyp:mojo_cpp_bindings',
@@ -38,6 +36,24 @@
]
},
{
+ # GN version: //components/leveldb/public/cpp:cpp
+ 'target_name': 'leveldb_public_lib',
+ 'type': 'static_library',
+ 'sources': [
+ 'public/cpp/remote_iterator.cc',
+ 'public/cpp/remote_iterator.h',
+ 'public/cpp/util.cc',
+ 'public/cpp/util.h',
+ ],
+ 'dependencies': [
+ 'leveldb_bindings_mojom',
+ '../../mojo/mojo_base.gyp:mojo_application_base',
+ '../../mojo/mojo_edk.gyp:mojo_system_impl',
+ '../../mojo/mojo_public.gyp:mojo_cpp_bindings',
+ '../../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
+ ]
+ },
+ {
# GN version: //components/leveldb/public/interfaces
'target_name': 'leveldb_bindings',
'type': 'static_library',
« no previous file with comments | « components/leveldb/BUILD.gn ('k') | components/leveldb/leveldb_database_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698