| # Copyright 2026 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/python/python_host_test.gni") |
| import("//build/python/python_library.gni") |
| |
| assert(is_host) |
| |
| python_host_test("perfcompare_test") { |
| # TODO(https://fxbug.dev/496596903): Add type declarations to this |
| # code and make it pass MyPy's type checks. |
| enable_mypy = false |
| main_source = "perfcompare_test.py" |
| sources = [ |
| "local_workflow.py", |
| "perfcompare.py", |
| "stats.py", |
| ] |
| data_package_name = "perfcompare_test_data" |
| data_sources = [ "perfcompare_test_output.txt" ] |
| } |
| |
| group("tests") { |
| testonly = true |
| public_deps = [ ":perfcompare_test" ] |
| } |