1*5225e6b1SAndroid Build Coastguard Worker# Copyright (C) 2024 The Android Open Source Project 2*5225e6b1SAndroid Build Coastguard Worker# 3*5225e6b1SAndroid Build Coastguard Worker# Licensed under the Apache License, Version 2.0 (the "License"); 4*5225e6b1SAndroid Build Coastguard Worker# you may not use this file except in compliance with the License. 5*5225e6b1SAndroid Build Coastguard Worker# You may obtain a copy of the License at 6*5225e6b1SAndroid Build Coastguard Worker# 7*5225e6b1SAndroid Build Coastguard Worker# http://www.apache.org/licenses/LICENSE-2.0 8*5225e6b1SAndroid Build Coastguard Worker# 9*5225e6b1SAndroid Build Coastguard Worker# Unless required by applicable law or agreed to in writing, software 10*5225e6b1SAndroid Build Coastguard Worker# distributed under the License is distributed on an "AS IS" BASIS, 11*5225e6b1SAndroid Build Coastguard Worker# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12*5225e6b1SAndroid Build Coastguard Worker# See the License for the specific language governing permissions and 13*5225e6b1SAndroid Build Coastguard Worker# limitations under the License. 14*5225e6b1SAndroid Build Coastguard Worker 15*5225e6b1SAndroid Build Coastguard Workerload(":readme.bzl", "readme_test") 16*5225e6b1SAndroid Build Coastguard Worker 17*5225e6b1SAndroid Build Coastguard Workerreadme_test( 18*5225e6b1SAndroid Build Coastguard Worker name = "readme_test", 19*5225e6b1SAndroid Build Coastguard Worker readme = "docs/efi_protocols.md", 20*5225e6b1SAndroid Build Coastguard Worker # Note: can't read files in subpackages, not sure how to add a dependency on all, 21*5225e6b1SAndroid Build Coastguard Worker # globbed, subpackages and all the rust_lib targets they contain. 22*5225e6b1SAndroid Build Coastguard Worker deps = [ 23*5225e6b1SAndroid Build Coastguard Worker "@gbl//efi:app", 24*5225e6b1SAndroid Build Coastguard Worker "@gbl//efi:libgbl_efi", 25*5225e6b1SAndroid Build Coastguard Worker "@gbl//libavb:sysdeps", 26*5225e6b1SAndroid Build Coastguard Worker "@gbl//libboot", 27*5225e6b1SAndroid Build Coastguard Worker "@gbl//libbootimg", 28*5225e6b1SAndroid Build Coastguard Worker "@gbl//libbootparams", 29*5225e6b1SAndroid Build Coastguard Worker "@gbl//libc", 30*5225e6b1SAndroid Build Coastguard Worker "@gbl//libefi", 31*5225e6b1SAndroid Build Coastguard Worker "@gbl//libefi_types", 32*5225e6b1SAndroid Build Coastguard Worker "@gbl//liberror", 33*5225e6b1SAndroid Build Coastguard Worker "@gbl//libfastboot", 34*5225e6b1SAndroid Build Coastguard Worker "@gbl//libfdt", 35*5225e6b1SAndroid Build Coastguard Worker "@gbl//libgbl", 36*5225e6b1SAndroid Build Coastguard Worker "@gbl//libmisc", 37*5225e6b1SAndroid Build Coastguard Worker "@gbl//libsafemath", 38*5225e6b1SAndroid Build Coastguard Worker "@gbl//libstorage", 39*5225e6b1SAndroid Build Coastguard Worker ], 40*5225e6b1SAndroid Build Coastguard Worker) 41