blob: e49bddfda8c78ea7be125a93eb4f391d3d28b00c [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/zircon/zx_library.gni")
zx_library("profile") {
sources = [ "profile.cc" ]
sdk = "source"
sdk_headers = [ "lib/profile/profile.h" ]
public_deps = [ "//zircon/system/ulib/svc" ]
deps = [
":config",
"//sdk/fidl/fuchsia.scheduler.deprecated:fuchsia.scheduler.deprecated_cpp",
"//sdk/lib/fdio",
"//sdk/lib/syslog/cpp",
"//src/lib/files",
"//third_party/rapidjson",
"//third_party/re2",
"//zircon/system/ulib/async",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/zx",
]
}
source_set("config") {
sources = [
"config.cc",
"config.h",
]
public_deps = [
"//sdk/fidl/fuchsia.scheduler:fuchsia.scheduler_cpp",
"//sdk/lib/fdio",
"//sdk/lib/syslog/cpp",
"//src/lib/files",
"//third_party/rapidjson",
"//third_party/re2",
"//zircon/system/ulib/zx",
]
}