1# Copyright 2016 The Fuchsia Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5LOCAL_DIR := $(GET_LOCAL_DIR)
6
7MODULE := $(LOCAL_DIR)
8
9MODULE_TYPE := userlib
10
11MODULE_COMPILEFLAGS += -fvisibility=hidden
12
13MODULE_SRCS += \
14    $(LOCAL_DIR)/collector.cpp \
15    $(LOCAL_DIR)/counter.cpp \
16    $(LOCAL_DIR)/histogram.cpp \
17    $(LOCAL_DIR)/event_buffer.cpp \
18
19MODULE_STATIC_LIBS := \
20    system/ulib/fbl \
21    system/ulib/fidl \
22    system/ulib/zx \
23    system/ulib/zxcpp \
24
25MODULE_LIBS := \
26    system/ulib/c \
27    system/ulib/zircon \
28
29MODULE_FIDL_LIBS := \
30    system/fidl/fuchsia-cobalt \
31    system/fidl/fuchsia-mem \
32
33MODULE_PACKAGE := src
34
35include make/module.mk
36