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

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

Issue 2773823002: Use a two-part data format version in IndexedDB metadata. (Closed)
Patch Set: base::MakeShared 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
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("//gpu/vulkan/features.gni") 7 import("//gpu/vulkan/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//ppapi/features/features.gni") 9 import("//ppapi/features/features.gni")
10 import("//printing/features/features.gni") 10 import("//printing/features/features.gni")
(...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 "indexed_db/indexed_db_callbacks.cc", 754 "indexed_db/indexed_db_callbacks.cc",
755 "indexed_db/indexed_db_callbacks.h", 755 "indexed_db/indexed_db_callbacks.h",
756 "indexed_db/indexed_db_class_factory.cc", 756 "indexed_db/indexed_db_class_factory.cc",
757 "indexed_db/indexed_db_class_factory.h", 757 "indexed_db/indexed_db_class_factory.h",
758 "indexed_db/indexed_db_connection.cc", 758 "indexed_db/indexed_db_connection.cc",
759 "indexed_db/indexed_db_connection.h", 759 "indexed_db/indexed_db_connection.h",
760 "indexed_db/indexed_db_context_impl.cc", 760 "indexed_db/indexed_db_context_impl.cc",
761 "indexed_db/indexed_db_context_impl.h", 761 "indexed_db/indexed_db_context_impl.h",
762 "indexed_db/indexed_db_cursor.cc", 762 "indexed_db/indexed_db_cursor.cc",
763 "indexed_db/indexed_db_cursor.h", 763 "indexed_db/indexed_db_cursor.h",
764 "indexed_db/indexed_db_data_format_version.cc",
765 "indexed_db/indexed_db_data_format_version.h",
764 "indexed_db/indexed_db_data_loss_info.h", 766 "indexed_db/indexed_db_data_loss_info.h",
765 "indexed_db/indexed_db_database.cc", 767 "indexed_db/indexed_db_database.cc",
766 "indexed_db/indexed_db_database.h", 768 "indexed_db/indexed_db_database.h",
767 "indexed_db/indexed_db_database_callbacks.cc", 769 "indexed_db/indexed_db_database_callbacks.cc",
768 "indexed_db/indexed_db_database_callbacks.h", 770 "indexed_db/indexed_db_database_callbacks.h",
769 "indexed_db/indexed_db_database_error.cc", 771 "indexed_db/indexed_db_database_error.cc",
770 "indexed_db/indexed_db_database_error.h", 772 "indexed_db/indexed_db_database_error.h",
771 "indexed_db/indexed_db_dispatcher_host.cc", 773 "indexed_db/indexed_db_dispatcher_host.cc",
772 "indexed_db/indexed_db_dispatcher_host.h", 774 "indexed_db/indexed_db_dispatcher_host.h",
773 "indexed_db/indexed_db_factory.h", 775 "indexed_db/indexed_db_factory.h",
(...skipping 1280 matching lines...) Expand 10 before | Expand all | Expand 10 after
2054 if (!is_component_build) { 2056 if (!is_component_build) {
2055 public_deps = [ 2057 public_deps = [
2056 ":browser", 2058 ":browser",
2057 ] 2059 ]
2058 } else { 2060 } else {
2059 public_deps = [ 2061 public_deps = [
2060 "//third_party/leveldatabase", 2062 "//third_party/leveldatabase",
2061 ] 2063 ]
2062 } 2064 }
2063 } 2065 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698