Merge "Don't write allowlisted androidx.* libraries to allowed_deps.txt" into main

This commit is contained in:
Alan Viverette
2024-07-08 18:03:31 +00:00
committed by Gerrit Code Review

View File

@@ -46,6 +46,9 @@ var (
Command: "cat $out.rsp | xargs cat" +
// Only track non-external dependencies, i.e. those that end up in the binary
" | grep -v '(external)'" +
// Allowlist androidx deps
" | grep -v '^androidx\\.'" +
" | grep -v '^prebuilt_androidx\\.'" +
// Ignore comments in any of the files
" | grep -v '^#'" +
" | sort -u -f >$out",