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

Side by Side Diff: content/content_browser.gypi

Issue 17462005: IndexedDB: Replace transaction's AVLTree with std::map (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased; store node pointers in map to avoid copies Created 7 years, 4 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'dependencies': [ 6 'dependencies': [
7 'browser/speech/proto/speech_proto.gyp:speech_proto', 7 'browser/speech/proto/speech_proto.gyp:speech_proto',
8 '../base/base.gyp:base_static', 8 '../base/base.gyp:base_static',
9 '../crypto/crypto.gyp:crypto', 9 '../crypto/crypto.gyp:crypto',
10 '../google_apis/google_apis.gyp:google_apis', 10 '../google_apis/google_apis.gyp:google_apis',
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 'browser/indexed_db/indexed_db_leveldb_coding.cc', 624 'browser/indexed_db/indexed_db_leveldb_coding.cc',
625 'browser/indexed_db/indexed_db_leveldb_coding.h', 625 'browser/indexed_db/indexed_db_leveldb_coding.h',
626 'browser/indexed_db/indexed_db_metadata.cc', 626 'browser/indexed_db/indexed_db_metadata.cc',
627 'browser/indexed_db/indexed_db_metadata.h', 627 'browser/indexed_db/indexed_db_metadata.h',
628 'browser/indexed_db/indexed_db_quota_client.cc', 628 'browser/indexed_db/indexed_db_quota_client.cc',
629 'browser/indexed_db/indexed_db_quota_client.h', 629 'browser/indexed_db/indexed_db_quota_client.h',
630 'browser/indexed_db/indexed_db_transaction.cc', 630 'browser/indexed_db/indexed_db_transaction.cc',
631 'browser/indexed_db/indexed_db_transaction.h', 631 'browser/indexed_db/indexed_db_transaction.h',
632 'browser/indexed_db/indexed_db_transaction_coordinator.cc', 632 'browser/indexed_db/indexed_db_transaction_coordinator.cc',
633 'browser/indexed_db/indexed_db_transaction_coordinator.h', 633 'browser/indexed_db/indexed_db_transaction_coordinator.h',
634 'browser/indexed_db/leveldb/avltree.h',
635 'browser/indexed_db/leveldb/fixed_array.h',
636 'browser/indexed_db/leveldb/leveldb_comparator.h', 634 'browser/indexed_db/leveldb/leveldb_comparator.h',
637 'browser/indexed_db/leveldb/leveldb_database.cc', 635 'browser/indexed_db/leveldb/leveldb_database.cc',
638 'browser/indexed_db/leveldb/leveldb_database.h', 636 'browser/indexed_db/leveldb/leveldb_database.h',
639 'browser/indexed_db/leveldb/leveldb_iterator.h', 637 'browser/indexed_db/leveldb/leveldb_iterator.h',
640 'browser/indexed_db/leveldb/leveldb_transaction.cc', 638 'browser/indexed_db/leveldb/leveldb_transaction.cc',
641 'browser/indexed_db/leveldb/leveldb_transaction.h', 639 'browser/indexed_db/leveldb/leveldb_transaction.h',
642 'browser/indexed_db/leveldb/leveldb_write_batch.cc', 640 'browser/indexed_db/leveldb/leveldb_write_batch.cc',
643 'browser/indexed_db/leveldb/leveldb_write_batch.h', 641 'browser/indexed_db/leveldb/leveldb_write_batch.h',
644 'browser/loader/async_resource_handler.cc', 642 'browser/loader/async_resource_handler.cc',
645 'browser/loader/async_resource_handler.h', 643 'browser/loader/async_resource_handler.h',
(...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after
1508 '../third_party/speex/speex.gyp:libspeex', 1506 '../third_party/speex/speex.gyp:libspeex',
1509 ], 1507 ],
1510 }], 1508 }],
1511 ['linux_use_libgps==1', { 1509 ['linux_use_libgps==1', {
1512 'dependencies': [ 1510 'dependencies': [
1513 '../build/linux/system.gyp:libgps', 1511 '../build/linux/system.gyp:libgps',
1514 ], 1512 ],
1515 }], 1513 }],
1516 ], 1514 ],
1517 } 1515 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698