Allow camera to notify traced of a notable event (crosshatch/blueline)

Most apps already have the permission to act as full producers
(isolated_app, ephemeral_app, priv_app, untrusted_app_all), but
the camera doesn't inherit that as it runs in its own domain.

Granting only the socket (i.e. ipc) permission, as:
* only that is needed at the moment.
* granting the shmem/fd permissions would require a broader change, as traced_tmpfs is declared in private/.

Specific denial:
05-20 13:56:20.303  7751  7751 W trigger_perfett: type=1400 audit(0.0:19): avc: denied { write } for name="traced_producer" dev="tmpfs" ino=7061 scontext=u:r:google_camera_app:s0:c181,c256,c512,c768 tcontext=u:object_r:traced_producer_socket:s0 tclass=sock_file permissive=0 app=com.google.android.GoogleCamera

Bug: 130543265
Tested: tested manually on blueline-userdebug (gca successfully exec'd trigger_perfetto)
Change-Id: I92e6c23abfef2e12f5dc3acf20a419d62674accd
diff --git a/vendor/google/google_camera_app.te b/vendor/google/google_camera_app.te
index 5023e08..bc29f3f 100644
--- a/vendor/google/google_camera_app.te
+++ b/vendor/google/google_camera_app.te
@@ -47,3 +47,6 @@
 allow google_camera_app hal_paintbox_hwservice:hwservice_manager find;
 binder_call(google_camera_app, easel)
 allow google_camera_app easel_device:chr_file rw_file_perms;
+
+# Allow notifying Perfetto traced daemon that a notable event has occurred.
+unix_socket_connect(google_camera_app, traced_producer, traced)