# 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.
import("//extensions/buildflags/buildflags.gni")
assert(is_chromeos)
source_set("smart_card_provider_private") {
sources = [
"smart_card_provider_private_api.cc",
"smart_card_provider_private_api.h",
]
deps = [
"//base",
"//chrome/common/extensions/api",
"//extensions/browser",
]
}
source_set("browser_tests") {
testonly = true
sources = [ "smart_card_provider_private_apitest.cc" ]
# From test("browser_tests")
defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
deps = [
":smart_card_provider_private",
"//chrome/browser",
"//chrome/test:test_support",
]
}