1# Copyright 2017 The Fuchsia Authors
2#
3# Use of this source code is governed by a MIT-style
4# license that can be found in the LICENSE file or at
5# https://opensource.org/licenses/MIT
6
7LOCAL_DIR := $(GET_LOCAL_DIR)
8
9MODULE_SRCS += \
10    $(LOCAL_DIR)/collector.cpp \
11    $(LOCAL_DIR)/collector_unittest.cpp \
12    $(LOCAL_DIR)/hw_rng_collector.cpp \
13    $(LOCAL_DIR)/jitterentropy_collector.cpp \
14    $(LOCAL_DIR)/quality_test.cpp
15
16MODULE_DEPS += \
17    kernel/dev/hw_rng \
18    kernel/lib/fbl \
19    kernel/lib/unittest \
20    third_party/lib/jitterentropy
21