# Copyright 2023 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("platform") {
sources = [
"crypto.cc",
"system_clock.cc",
]
deps = [
"//base",
"//crypto",
"//third_party/nearby:platform_api_types",
]
}
source_set("nearby") {
sources = [
"nearby_features.cc",
"nearby_features.h",
]
deps = [ "//base" ]
}
source_set("unit_tests") {
testonly = true
sources = [ "crypto_unittest.cc" ]
deps = [
":platform",
"//base/test:test_support",
"//testing/gtest",
"//third_party/nearby:platform_api_types",
]
}