# Copyright 2024 The Chromium Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. assert(is_chromeos) static_library("sharesheet") { sources = [ "arc_sharesheet_bridge.cc", "arc_sharesheet_bridge.h", ] public_deps = [ "//chrome/browser:browser_public_dependencies" ] deps = [ "//base", "//chrome/browser/profiles:profile", "//chromeos/ash/experiences/arc", "//chromeos/ash/experiences/arc/mojom", "//components/keyed_service/core", "//content/public/browser", ] } source_set("unit_tests") { testonly = true sources = [ "arc_sharesheet_bridge_unittest.cc" ] deps = [ ":sharesheet", "//base", "//chrome/test:test_support", "//chromeos/ash/experiences/arc", "//chromeos/ash/experiences/arc:arc_test_support", "//content/test:test_support", "//testing/gtest", ] }