blob: 8698c1015e8f9506165320ca6dcc3230a771cbfa [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.
source_set("intel_pt_decode") {
sources = [
"decoder.cc",
"decoder.h",
"sideband.cc",
]
deps = [
"third_party/simple-pt:reader",
"//sdk/lib/fit",
"//src/lib/debugger_utils",
"//src/lib/fxl",
"//third_party/processor-trace/libipt",
]
if (!is_fuchsia) {
deps += [ "//zircon/system/public" ]
}
# TODO(https://fxbug.dev/58162): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
}