# 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("app_shortcuts") { sources = [ "arc_app_shortcuts_request.cc", "arc_app_shortcuts_request.h", ] public_deps = [ "//chrome/browser:browser_public_dependencies" ] deps = [ "//base", "//chrome/browser/apps/app_service/app_icon", "//chromeos/ash/experiences/arc", "//chromeos/ash/experiences/arc/mojom", ] } source_set("unit_tests") { testonly = true sources = [ "arc_app_shortcuts_request_unittest.cc" ] deps = [ ":app_shortcuts", "//base", "//base/test:test_support", "//chrome/browser/apps/app_service", "//chrome/browser/ash/app_list/arc:test_support", "//chrome/browser/ash/arc", "//chrome/test:test_support", "//content/test:test_support", "//testing/gtest", ] }