blob: ee3fba3a98257f997d4533ed20b7501f4acf2380 [file] [log] [blame]
# 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.
import("//testing/test.gni")
static_library("lib") {
sources = [
"leveldb_database_impl.cc",
"leveldb_database_impl.h",
]
public_deps = [
"//components/services/leveldb/public/cpp",
"//components/services/leveldb/public/mojom",
"//components/services/storage",
]
deps = [
"//mojo/public/cpp/system",
"//third_party/leveldatabase",
]
}
test("leveldb_service_unittests") {
sources = [
"leveldb_mojo_unittest.cc",
]
deps = [
":lib",
"//base",
"//base/test:test_support",
"//components/services/leveldb/public/cpp",
"//components/services/leveldb/public/mojom",
"//mojo/core/test:run_all_unittests",
"//mojo/public/cpp/bindings",
"//mojo/public/cpp/system",
"//testing/gtest",
"//third_party/leveldatabase",
]
}