blob: ddf6f5ca7c6c4ff1160a6354847d05a06fc9639e [file] [log] [blame]
# Copyright 2023 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_library.gni")
python_library("jellyfish") {
enable_mypy = false
source_root = "jellyfish/jellyfish"
sources = [
"__init__.py",
"_jellyfish.py",
"porter.py",
]
}
group("tests") {
testonly = true
deps = [ "tests" ]
}