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

Side by Side Diff: content/browser/BUILD.gn

Issue 2760163002: [IndexedDB] Pool and evict leveldb iterators, to save memory (Closed)
Patch Set: comments Created 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | content/browser/indexed_db/indexed_db_backing_store.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//ppapi/features/features.gni") 8 import("//ppapi/features/features.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//third_party/WebKit/public/public_features.gni") 10 import("//third_party/WebKit/public/public_features.gni")
(...skipping 758 matching lines...) Expand 10 before | Expand all | Expand 10 after
769 "indexed_db/indexed_db_transaction_coordinator.cc", 769 "indexed_db/indexed_db_transaction_coordinator.cc",
770 "indexed_db/indexed_db_transaction_coordinator.h", 770 "indexed_db/indexed_db_transaction_coordinator.h",
771 "indexed_db/indexed_db_value.cc", 771 "indexed_db/indexed_db_value.cc",
772 "indexed_db/indexed_db_value.h", 772 "indexed_db/indexed_db_value.h",
773 "indexed_db/leveldb/leveldb_comparator.h", 773 "indexed_db/leveldb/leveldb_comparator.h",
774 "indexed_db/leveldb/leveldb_database.cc", 774 "indexed_db/leveldb/leveldb_database.cc",
775 "indexed_db/leveldb/leveldb_database.h", 775 "indexed_db/leveldb/leveldb_database.h",
776 "indexed_db/leveldb/leveldb_env.cc", 776 "indexed_db/leveldb/leveldb_env.cc",
777 "indexed_db/leveldb/leveldb_env.h", 777 "indexed_db/leveldb/leveldb_env.h",
778 "indexed_db/leveldb/leveldb_factory.h", 778 "indexed_db/leveldb/leveldb_factory.h",
779 "indexed_db/leveldb/leveldb_iterator.cc",
779 "indexed_db/leveldb/leveldb_iterator.h", 780 "indexed_db/leveldb/leveldb_iterator.h",
780 "indexed_db/leveldb/leveldb_iterator_impl.cc", 781 "indexed_db/leveldb/leveldb_iterator_impl.cc",
781 "indexed_db/leveldb/leveldb_iterator_impl.h", 782 "indexed_db/leveldb/leveldb_iterator_impl.h",
782 "indexed_db/leveldb/leveldb_transaction.cc", 783 "indexed_db/leveldb/leveldb_transaction.cc",
783 "indexed_db/leveldb/leveldb_transaction.h", 784 "indexed_db/leveldb/leveldb_transaction.h",
784 "indexed_db/leveldb/leveldb_write_batch.cc", 785 "indexed_db/leveldb/leveldb_write_batch.cc",
785 "indexed_db/leveldb/leveldb_write_batch.h", 786 "indexed_db/leveldb/leveldb_write_batch.h",
786 "leveldb_wrapper_impl.cc", 787 "leveldb_wrapper_impl.cc",
787 "leveldb_wrapper_impl.h", 788 "leveldb_wrapper_impl.h",
788 "loader/async_resource_handler.cc", 789 "loader/async_resource_handler.cc",
(...skipping 1245 matching lines...) Expand 10 before | Expand all | Expand 10 after
2034 if (!is_component_build) { 2035 if (!is_component_build) {
2035 public_deps = [ 2036 public_deps = [
2036 ":browser", 2037 ":browser",
2037 ] 2038 ]
2038 } else { 2039 } else {
2039 public_deps = [ 2040 public_deps = [
2040 "//third_party/leveldatabase", 2041 "//third_party/leveldatabase",
2041 ] 2042 ]
2042 } 2043 }
2043 } 2044 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/indexed_db/indexed_db_backing_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698