blob: 3aac9068f5af949e2beab98863806a2c08b0c4c3 [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/components.gni")
assert(!defined(zx) || zx != "/",
"This file can only be used in the Fuchsia GN build.")
executable("bin") {
if (is_fuchsia) {
configs += [ "//build/config:all_source" ]
}
output_name = "mutex_pi_exerciser"
sources = [
"event.cc",
"main.cc",
"thread.cc",
"tracer.cc",
]
deps = [
"//sdk/fidl/fuchsia.scheduler",
"//sdk/lib/fdio",
"//sdk/lib/stdcompat",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/sync",
"//zircon/system/ulib/trace",
"//zircon/system/ulib/trace-engine",
"//zircon/system/ulib/trace-provider",
"//zircon/system/ulib/zircon-internal",
"//zircon/system/ulib/zx",
]
}
fuchsia_shell_package("mutex_pi_exerciser") {
deps = [ ":bin" ]
}