blob: fe605e7b201782b4f17d6bb5cecd01718e960f59 [file] [log] [blame] [edit]
# Copyright 2024 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
group("all") {
deps = [ ":heatmap-recorder" ]
}
pkg_config("target_default_pkg_deps") {
pkg_deps = [
"absl",
"libbrillo",
"libchrome",
"libtouchraw",
]
}
executable("heatmap-recorder") {
sources = [ "heatmap_recorder.cc" ]
install_path = "bin"
configs += [ ":target_default_pkg_deps" ]
}