blob: dd7b15ac1c0216bed34bd842afc2ef4e5e2e8ae9 [file] [log] [blame]
# Copyright 2017 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.
config("trace_config") {
include_dirs = [ "include" ]
}
source_set("trace-reader") {
# Don't forget to update rules.mk as well for the Zircon build.
sources = [
"include/trace-reader/reader.h",
"include/trace-reader/records.h",
"reader.cpp",
"records.cpp",
]
public_deps = [
"//zircon/system/ulib/fbl",
]
public_configs = [ ":trace_config" ]
}