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

Unified Diff: extensions/browser/value_store/BUILD.gn

Issue 2336843002: Decompose //extensions/browser/BUILD.gn (Closed)
Patch Set: . Created 4 years, 3 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
Index: extensions/browser/value_store/BUILD.gn
diff --git a/extensions/browser/value_store/BUILD.gn b/extensions/browser/value_store/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..84ddd469a7e6c05fc483852e7cb0faf813d7ec0b
--- /dev/null
+++ b/extensions/browser/value_store/BUILD.gn
@@ -0,0 +1,33 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("value_store") {
+ sources = [
+ "lazy_leveldb.cc",
+ "lazy_leveldb.h",
+ "legacy_value_store_factory.cc",
+ "legacy_value_store_factory.h",
+ "leveldb_scoped_database.cc",
+ "leveldb_scoped_database.h",
+ "leveldb_value_store.cc",
+ "leveldb_value_store.h",
+ "test_value_store_factory.cc",
+ "test_value_store_factory.h",
+ "testing_value_store.cc",
+ "testing_value_store.h",
+ "value_store.cc",
+ "value_store.h",
+ "value_store_change.cc",
+ "value_store_change.h",
+ "value_store_factory.h",
+ "value_store_factory_impl.cc",
+ "value_store_factory_impl.h",
+ "value_store_frontend.cc",
+ "value_store_frontend.h",
+ ]
+
+ deps = [
+ "//third_party/leveldatabase",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698