| # 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. |
| |
| import("//common-mk/pkg_config.gni") |
| |
| group("all") { |
| deps = [ ":hwbuf_memcpy_benchmark" ] |
| } |
| |
| pkg_config("target_defaults") { |
| configs = [ |
| "//camera/build:cros_camera_common", |
| "//common-mk:test", |
| ] |
| pkg_deps = [ |
| "benchmark", |
| "gbm", |
| "libchrome-test", |
| "libdrm", |
| ] |
| } |
| |
| executable("hwbuf_memcpy_benchmark") { |
| sources = [ "//camera/hardware_buffer/tests/memcpy_benchmark.cc" ] |
| configs += [ ":target_defaults" ] |
| install_path = "bin" |
| deps = [ "//camera/hardware_buffer" ] |
| } |