Fix presubmits errors introduced by wrong flags

The flags for the cc_shared_library tests were not correct.

RELNOTES:none
PiperOrigin-RevId: 407824952
Change-Id: Ibd66ca918b0ea75587f5807742f63bb23267602b
diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml
index a7e4da0..221d4dc 100644
--- a/.bazelci/presubmit.yml
+++ b/.bazelci/presubmit.yml
@@ -52,13 +52,13 @@
     - "//examples/test_cc_shared_library/diamond_inheritance/..."
     build_flags:
     - "--experimental_cc_shared_library"
-    - "--//examples:incompatible_link_once=True"
-    - "--//examples:enable_permissions_check=True"
+    - "--experimental_link_static_libraries_once"
+    - "--experimental_enable_target_export_check"
     test_flags:
     - "--test_timeout=120"
     - "--experimental_cc_shared_library"
-    - "--//examples:incompatible_link_once=True"
-    - "--//examples:enable_permissions_check=True"
+    - "--experimental_link_static_libraries_once"
+    - "--experimental_enable_target_export_check"
     test_targets:
     - "//examples/test_cc_shared_library/..."
     - "//examples/test_cc_shared_library/diamond_inheritance/..."