java_sdk_library: Avoid generating system and test .txt files
If the library does not provide system and test APIs then do not generate/require corresponding .txt files. Bug: 145998881 Test: m checkbuild Change-Id: I21cfdb0b63fd575e8c8c63ea2b436e0c4aa8f3fc
This commit is contained in:
@@ -15,15 +15,16 @@
|
||||
# limitations under the License.
|
||||
|
||||
if [[ -z "$1" ]]; then
|
||||
echo "usage: $0 <modulePath>" >&2
|
||||
echo "usage: $0 <modulePath> scopes..." >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
api_dir=$1/api
|
||||
shift
|
||||
|
||||
mkdir -p "$api_dir"
|
||||
|
||||
scopes=("" system- test-)
|
||||
scopes=("" "$@")
|
||||
apis=(current removed)
|
||||
|
||||
for scope in "${scopes[@]}"; do
|
||||
@@ -31,3 +32,4 @@ for scope in "${scopes[@]}"; do
|
||||
touch "${api_dir}/${scope}${api}.txt"
|
||||
done
|
||||
done
|
||||
|
||||
|
Reference in New Issue
Block a user