blob: e786efd5f75bccba2e9b687dac4c2de71cbf0ddb [file] [log] [blame]
# Copyright 2021 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.
source_set("restricted-mode") {
sources = [ "restricted-mode.cc" ]
if (current_cpu == "x64") {
sources += [ "x64.S" ]
} else if (current_cpu == "arm64") {
sources += [ "arm64.S" ]
} else if (current_cpu == "riscv64") {
sources += [ "riscv64.S" ]
}
deps = [
"//zircon/system/ulib/pretty",
"//zircon/system/ulib/runtime",
"//zircon/system/ulib/zircon-internal",
"//zircon/system/ulib/zx",
"//zircon/system/ulib/zxtest",
]
}