| # Copyright 2024 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. |
| |
| cc_library( |
| name = "mali_profiler", |
| srcs = [ |
| "cpu_profiler.h", |
| "gpu_profiler.h", |
| "hwcpipe.cpp", |
| "hwcpipe.h", |
| "hwcpipe_log.h", |
| "value.h", |
| "vendor/arm/mali/hwc.hpp", |
| "vendor/arm/mali/hwc_names.hpp", |
| "vendor/arm/mali/mali_profiler_magma.cpp", |
| "vendor/arm/mali/mali_profiler_magma.h", |
| ], |
| copts = [ |
| "-Wno-extra-semi", |
| "-Wno-conversion", |
| "-Wno-deprecated-anon-enum-enum-conversion", |
| "-fexceptions", |
| ], |
| defines = ["HWCPIPE_NO_JSON"], |
| visibility = ["//visibility:public"], |
| deps = [ |
| "@gpu//drivers/msd-arm-mali:msd-arm-include", |
| "@fuchsia_sdk//pkg/fdio", |
| "@fuchsia_sdk//pkg/magma_client", |
| "@fuchsia_sdk//pkg/zx", |
| ], |
| ) |