| 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",
|
| + ]
|
| +}
|
|
|