blob: 826f4e635fbc70deb66ddf967bb5e5c15f93ae2b [file] [log] [blame]
# Copyright 2022 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")
import("//third_party/protobuf/proto_library.gni")
source_set("session_proto_db") {
sources = [ "session_proto_db.h" ]
deps = [
"//base:base",
"//components/commerce/core:persisted_state_db_content_proto",
"//components/keyed_service/content",
"//components/leveldb_proto",
"//content/public/browser:browser",
"//third_party/leveldatabase",
]
}
source_set("unit_tests") {
testonly = true
sources = [ "session_proto_db_unittest.cc" ]
deps = [
":session_proto_db",
":session_proto_db_test_proto",
"//base:base",
"//base/test:test_support",
"//components/commerce/core:persisted_state_db_content_proto",
"//components/leveldb_proto:test_support",
"//testing/gmock",
"//testing/gtest",
"//third_party/leveldatabase",
"//third_party/protobuf:protobuf_lite",
]
}
proto_library("session_proto_db_test_proto") {
sources = [ "session_proto_db_test_proto.proto" ]
}