blob: 395f7f6ef64fffec6a713b1dff6a5bccd0d10301 [file] [log] [blame]
# Copyright 2019 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("local_search_service") {
sources = [
"index_impl.cc",
"index_impl.h",
"local_search_service_impl.cc",
"local_search_service_impl.h",
]
public_deps = [
"//base",
"//chrome/services/local_search_service/public/mojom",
"//mojo/public/cpp/bindings",
]
}
source_set("test_utils") {
testonly = true
sources = [
"test_utils.cc",
"test_utils.h",
]
public_deps = [
"//base",
"//chrome/services/local_search_service/public/mojom",
"//mojo/public/cpp/bindings",
"//testing/gtest",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"index_impl_unittest.cc",
"local_search_service_impl_unittest.cc",
]
deps = [
":local_search_service",
":test_utils",
"//testing/gtest",
]
}