blob: 3e19b2bb444092ea71a0a0aaaa8a6bad2cd06506 [file] [log] [blame]
# Copyright 2022 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/go/go_library.gni")
import("//build/testing/host_test_data.gni")
if (is_host) {
go_library("ffx") {
sources = [ "ffx.go" ]
deps = [
"//src/connectivity/network/testing/conformance/util",
"//tools/lib/ffxutil",
"//tools/lib/jsonutil",
]
non_go_deps = [ ":conformance-ffx-test-data" ]
testonly = true
}
host_test_data("conformance-ffx-test-data") {
sources = [
"${root_out_dir}/gen/tools/symbolizer/sdk.meta.json",
"${root_out_dir}/symbolizer",
]
deps = [ "//tools/symbolizer:sdk" ]
}
}