1# Copyright 2024 The Pigweed Authors 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); you may not 4# use this file except in compliance with the License. You may obtain a copy of 5# the License at 6# 7# https://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 12# License for the specific language governing permissions and limitations under 13# the License. 14 15load("@pigweed//pw_build:compatibility.bzl", "incompatible_with_mcu") 16load("@rules_python//python:defs.bzl", "py_library") 17 18package(default_visibility = ["//visibility:public"]) 19 20py_library( 21 name = "pw_docgen", 22 srcs = [ 23 "pw_docgen/__init__.py", 24 "pw_docgen/sphinx/__init__.py", 25 "pw_docgen/sphinx/bug.py", 26 "pw_docgen/sphinx/google_analytics.py", 27 "pw_docgen/sphinx/kconfig.py", 28 "pw_docgen/sphinx/module_metadata.py", 29 "pw_docgen/sphinx/modules_index.py", 30 "pw_docgen/sphinx/pigweed_live.py", 31 "pw_docgen/sphinx/pw_status_codes.py", 32 "pw_docgen/sphinx/seed_metadata.py", 33 ], 34 # TODO: https://pwbug.dev/371563295 - Remove these data dependencies after 35 # pigweed.dev-specific extensions have been moved out of pw_docgen. 36 data = [ 37 "//:PIGWEED_MODULES", 38 "//docs:module_metadata.json", 39 "//docs:module_metadata_schema.json", 40 "//seed:seed_metadata.json", 41 "//seed:seed_metadata_schema.json", 42 ], 43 imports = ["."], 44 target_compatible_with = incompatible_with_mcu(), 45 deps = [ 46 "//pw_status/py:pw_status", 47 "@python_packages//jsonschema", 48 "@python_packages//kconfiglib", 49 "@python_packages//pytz", 50 "@python_packages//sphinx", 51 "@rules_python//python/runfiles", 52 ], 53) 54