blob: 5663e3b5683319546109f9913b95c3e2c5cb52a7 [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("//build/assembly/bootfs_files_for_assembly.gni")
# Prints out the status of syscalls used to confirm them being disabled.
executable("syscall-check") {
visibility = [ ":*" ]
if (is_fuchsia) {
fdio_config = [ "//build/config/fuchsia:fdio_config" ]
if (configs + fdio_config - fdio_config != configs) {
configs -= fdio_config
}
}
sources = [ "main.cc" ]
deps = [
"//sdk/lib/fdio",
"//src/zircon/lib/zircon",
]
}
bootfs_files_for_assembly("bootfs") {
deps = [ ":syscall-check" ]
}