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

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

Issue 2760163002: [IndexedDB] Pool and evict leveldb iterators, to save memory (Closed)
Patch Set: comments & lifetime fix Created 3 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 # 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",
783 "indexed_db/leveldb/leveldb_iterator_pool_controller.h",
782 "indexed_db/leveldb/leveldb_transaction.cc", 784 "indexed_db/leveldb/leveldb_transaction.cc",
783 "indexed_db/leveldb/leveldb_transaction.h", 785 "indexed_db/leveldb/leveldb_transaction.h",
784 "indexed_db/leveldb/leveldb_write_batch.cc", 786 "indexed_db/leveldb/leveldb_write_batch.cc",
785 "indexed_db/leveldb/leveldb_write_batch.h", 787 "indexed_db/leveldb/leveldb_write_batch.h",
786 "leveldb_wrapper_impl.cc", 788 "leveldb_wrapper_impl.cc",
787 "leveldb_wrapper_impl.h", 789 "leveldb_wrapper_impl.h",
788 "loader/async_resource_handler.cc", 790 "loader/async_resource_handler.cc",
789 "loader/async_resource_handler.h", 791 "loader/async_resource_handler.h",
790 "loader/async_revalidation_driver.cc", 792 "loader/async_revalidation_driver.cc",
791 "loader/async_revalidation_driver.h", 793 "loader/async_revalidation_driver.h",
(...skipping 1242 matching lines...) Expand 10 before | Expand all | Expand 10 after
2034 if (!is_component_build) { 2036 if (!is_component_build) {
2035 public_deps = [ 2037 public_deps = [
2036 ":browser", 2038 ":browser",
2037 ] 2039 ]
2038 } else { 2040 } else {
2039 public_deps = [ 2041 public_deps = [
2040 "//third_party/leveldatabase", 2042 "//third_party/leveldatabase",
2041 ] 2043 ]
2042 } 2044 }
2043 } 2045 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698