blob: c2f528ba139f4653df10354d396fa6b2b4ac6c7d [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//src/sys/build/components.gni")
executable("basemgr_launcher_bin") {
output_name = "basemgr_launcher"
sources = [ "main.cc" ]
deps = [
"//sdk/fidl/fuchsia.modular.internal",
"//sdk/fidl/fuchsia.sys",
"//sdk/lib/sys/cpp",
"//sdk/lib/syslog/cpp",
"//src/lib/files",
"//src/lib/fxl",
"//src/modular/lib/modular_config",
"//zircon/public/lib/zxtest",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
public_deps = [
"//sdk/fidl/fuchsia.modular.session",
"//sdk/fidl/fuchsia.sys",
"//sdk/lib/fdio",
"//sdk/lib/fidl/cpp",
"//sdk/lib/sys/cpp",
"//zircon/system/ulib/async-default",
]
}
fuchsia_shell_package("basemgr_launcher") {
manifest = "meta/basemgr_launcher.cmx"
deps = [ ":basemgr_launcher_bin" ]
}
executable("basemgr_launcher_test") {
testonly = true
sources = [ "basemgr_launcher_test.cc" ]
deps = [
"//sdk/fidl/fuchsia.devicesettings",
"//sdk/fidl/fuchsia.identity.account",
"//sdk/fidl/fuchsia.sys",
"//sdk/fidl/fuchsia.testing.runner",
"//sdk/lib/sys/cpp/testing:integration",
"//src/lib/fxl/test:gtest_main",
"//src/ui/scenic/lib/scenic:scenic",
"//third_party/googletest:gtest",
"//zircon/public/lib/zxc",
]
}
fuchsia_unittest_package("basemgr_launcher_tests") {
manifest = "meta/basemgr_launcher_test.cmx"
deps = [ ":basemgr_launcher_test" ]
}
group("tests") {
testonly = true
# basemgr_launcher_test requires framework and tools packages to be available.
public_deps = [
":basemgr_launcher_tests",
"//src/modular/bundles:framework",
"//src/modular/bundles:testing",
"//src/modular/bundles:tools",
]
}