blob: 022d1c88b250f0b34f03c0d89446436688e38423 [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.
load("@rules_python//python:defs.bzl", "py_library")
package(default_visibility = ["//build/assembly/scripts:__pkg__"])
py_library(
name = "serialization",
srcs = glob(["serialization/*.py"]),
imports = ["."],
)
py_library(
name = "depfile",
srcs = glob(["depfile/*.py"]),
imports = ["."],
)
py_library(
name = "assembly",
srcs = glob(["assembly/*.py"]),
imports = ["."],
deps = [
":depfile",
":serialization",
],
)