blob: c76bc8f5a129d1082c50aec5680067cf6b478a25 [file] [log] [blame]
# Copyright 2017 The Chromium OS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI=5
CROS_WORKON_COMMIT="4c3891efd6a13d2c7b3a3e35d27fa92bf00e2b4d"
CROS_WORKON_TREE=("a9c9dfedee8947f546a02e996ac05ea263acfaa1" "971ee0e58a93b1c40661314789aca65de80e9fb7" "91f69ff9914c973729fd975019d841d5c3b1d99e" "dc1506ef7c8cfd2c5ffd1809dac05596ec18773c")
CROS_WORKON_LOCALNAME="platform2"
CROS_WORKON_PROJECT="chromiumos/platform2"
CROS_WORKON_OUTOFTREE_BUILD=1
CROS_WORKON_INCREMENTAL_BUILD=1
# TODO(crbug.com/809389): Avoid directly including headers from other packages.
CROS_WORKON_SUBTREE="common-mk libcontainer run_oci .gn"
PLATFORM_SUBDIR="run_oci"
inherit cros-workon libchrome platform
DESCRIPTION="Utility for running OCI-compatible containers"
LICENSE="BSD-Google"
SLOT="0"
KEYWORDS="*"
IUSE=""
RDEPEND="
chromeos-base/libbrillo
chromeos-base/libcontainer
sys-apps/util-linux
sys-libs/libcap
"
DEPEND="${RDEPEND}"
src_install() {
cd "${OUT}"
dobin run_oci
}
platform_pkg_test() {
local tests=(
container_config_parser_test
run_oci_test
)
local test_bin
for test_bin in "${tests[@]}"; do
# platform_test takes care of setting up your test environment
platform_test "run" "${OUT}/${test_bin}"
done
}