# Copyright 2022 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
static_library("posix") {
public = [ "posix_platform_delegate.h" ]
sources = [ "posix_platform_delegate.cc" ]
public_deps = [
"//components/device_signals/core/common",
"//components/device_signals/core/system_signals",
]
deps = [ "//base" ]
}
source_set("unit_tests") {
testonly = true
sources = [ "posix_platform_delegate_unittest.cc" ]
deps = [
":posix",
"//base",
"//components/device_signals/core/common",
"//components/device_signals/test:test_support",
"//testing/gmock",
"//testing/gtest",
]
}