blob: 009ebc2515895c6ec65acf5a53976dfb08866e1e [file] [log] [blame]
# 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.
import("//build/config/chromeos/ui_mode.gni")
assert(is_chromeos)
static_library("screen_capture") {
sources = [
"arc_screen_capture_bridge.cc",
"arc_screen_capture_bridge.h",
"arc_screen_capture_session.cc",
"arc_screen_capture_session.h",
]
public_deps = [ "//chrome/browser:browser_public_dependencies" ]
deps = [
"//ash",
"//base",
"//chrome/browser/ash/notifications",
"//chrome/common",
"//chromeos/ash/experiences/arc",
"//chromeos/ash/experiences/arc/mojom",
"//components/keyed_service/core",
"//components/viz/common",
"//content/public/browser",
"//content/public/browser",
"//gpu/command_buffer/client:raster_interface",
"//mojo/public/cpp/bindings",
"//mojo/public/cpp/system",
"//ui/aura",
"//ui/base",
"//ui/compositor",
"//ui/display",
"//ui/display/manager",
"//ui/gfx",
]
}