# Copyright 2025 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("screen_orientation") {
sources = [
"screen_orientation_delegate.cc",
"screen_orientation_delegate.h",
]
public_deps = [ "//content/public/browser" ]
deps = [
"//ash",
"//ui/display",
]
}
source_set("browser_tests") {
testonly = true
defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
sources = [ "screen_orientation_delegate_browsertest.cc" ]
deps = [
"//chrome/test:test_support_ui",
"//content/test:test_support",
"//ui/base:features",
]
}