blob: c9c0da8e35bfe1986ebd4f4102691b0ddf15df2f [file]
# 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")
import("//src/sys/component_index/component_index.gni")
executable("bin") {
output_name = "mem"
sources = [ "main.cc" ]
deps = [
"//sdk/fidl/fuchsia.memory",
"//sdk/lib/sys/cpp",
"//src/developer/memory/metrics",
"//src/lib/fxl",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/trace",
"//zircon/system/ulib/trace-provider:trace-provider-with-fdio",
]
}
fuchsia_package_with_single_component("mem") {
manifest = "meta/mem.cmx"
deps = [ ":bin" ]
}