# 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. | |
import("//build/package.gni") | |
static_library("cpuperf") { | |
sources = [ | |
] | |
# arm64 support will come later | |
if (current_cpu == "x64") { | |
sources += [ | |
"controller.cc", | |
"controller.h", | |
"events.cc", | |
"events.h", | |
"reader.cc", | |
"reader.h", | |
] | |
} | |
deps = [ | |
"//garnet/public/lib/fxl", | |
"//garnet/public/lib/fsl", | |
] | |
} |