blob: ce6ec3f3fa7c453ccfc683786ac391e4d1c25efb [file] [log] [blame]
# Copyright 2023 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//common-mk/pkg_config.gni")
group("all") {
deps = [ ":sandbox_me" ]
}
pkg_config("target_defaults") {
pkg_deps = [
"libbrillo",
"libchrome",
]
}
executable("sandbox_me") {
sources = [ "sandbox_me.cc" ]
configs += [ ":target_defaults" ]
install_path = "bin"
}