# Copyright 2023 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/cpp/library_headers.gni") | |
library_headers("headers") { | |
headers = [ "lib/scheduler/role.h" ] | |
} | |
source_set("cpp") { | |
sources = [ "role.cc" ] | |
public_deps = [ | |
":headers", | |
"//sdk/fidl/fuchsia.scheduler:fuchsia.scheduler_cpp", | |
"//sdk/lib/component/incoming/cpp", | |
"//zircon/system/ulib/zx", | |
] | |
} |