blob: da606c405bf2405c00777babb18bd9ffbf443c53 [file] [log] [blame]
# Copyright 2018 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("//garnet/bin/appmgr/integration_tests/sandbox/sandbox_test_package.gni")
sandbox_test_package("some_services") {
sources = [
"some_services.cc",
]
deps = [
"//garnet/bin/appmgr/integration_tests/sandbox:namespace_test",
"//garnet/public/fidl/fuchsia.sys",
"//garnet/public/lib/fxl/test:gtest_main",
"//third_party/googletest:gmock",
"//zircon/public/fidl/fuchsia-process",
]
}
sandbox_test_package("no_services") {
sources = [
"no_services.cc",
]
deps = [
"//garnet/bin/appmgr/integration_tests/sandbox:namespace_test",
"//garnet/public/lib/fxl/test:gtest_main",
"//third_party/googletest:gmock"
]
}
sandbox_test_package("multiple_components") {
sources = [
"multiple_components.cc",
]
deps = [
"//garnet/bin/appmgr/integration_tests/sandbox:namespace_test",
"//garnet/public/lib/component/cpp/testing",
"//garnet/public/lib/fxl/test:gtest_main",
"//third_party/googletest:gmock"
]
}