Merge tag 'android-13.0.0_r16' into int/13/fp3

Android 13.0.0 Release 16 (TQ1A.221205.011)

* tag 'android-13.0.0_r16':

Change-Id: Ibfd54ab77c79a38448f6ff6d2a81eea896ccb4bf
diff --git a/json_module_graph/findModulesWithTestSuitesValue.jq b/json_module_graph/findModulesWithTestSuitesValue.jq
new file mode 100644
index 0000000..02af597
--- /dev/null
+++ b/json_module_graph/findModulesWithTestSuitesValue.jq
@@ -0,0 +1,12 @@
+# CMD: Returns the modules that have test_suites property with $arg as one of its value.
+# Use $arg2 as the top level field key to be collected, e.g. Name, Blueprint.
+
+def hasTestSuitesWithValue($a):
+  .[] | select(.Name == "Test_suites") | .Values | .[] | . == $a
+;
+
+[.[] |
+select(.Module.Android.SetProperties |
+    if . == null then [] else . end |
+    hasTestSuitesWithValue($arg)) |
+.[$arg2] ] | unique | sort | .[]