blob: 29c36ee97d23a9c68575ae2ad05dc3653e893522 [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("container_app") {
sources = [
"container_app_tab_helper.cc",
"container_app_tab_helper.h",
]
public_deps = [
"//base",
"//content/public/browser",
]
deps = [ "//chromeos/constants" ]
}
source_set("unit_tests") {
testonly = true
sources = [ "container_app_tab_helper_unittest.cc" ]
deps = [
":container_app",
"//base",
"//base/test:test_support",
"//build:chromeos_buildflags",
"//chrome/browser/profiles:profile",
"//chrome/browser/ui",
"//chrome/test:test_support",
"//chromeos/constants",
"//content/public/browser",
"//content/test:test_support",
"//testing/gtest",
]
if (is_chromeos_lacros) {
deps += [ "//chromeos/startup" ]
}
}