| # 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. |
| |
| package( |
| default_applicable_licenses = ["//:license_fuchsia"], |
| ) |
| |
| # TODO(https://fxbug.dev/42078282): Use the SDK version when that exists. |
| cc_library( |
| name = "scheduler_cpp", |
| hdrs = ["include/lib/scheduler/role.h"], |
| includes = ["include"], |
| srcs = ["role.cc"], |
| deps = [ |
| "@fuchsia_sdk//pkg/zx", |
| "@fuchsia_sdk//pkg/component_incoming_cpp", |
| "@fuchsia_sdk//fidl/fuchsia.scheduler:fuchsia.scheduler_cpp", |
| ], |
| visibility = ["//visibility:public"], |
| ) |