[libc-tests] Migrate cmx->cml

Fixed: 102367

Change-Id: I901f34393e1a2caa6624e9238d78b931743c08f2
Reviewed-on: https://fuchsia-review.googlesource.com/c/libc-tests/+/689862
Fuchsia-Auto-Submit: Shai Barack <shayba@google.com>
Commit-Queue: Auto-Submit <auto-submit@fuchsia-infra.iam.gserviceaccount.com>
Reviewed-by: Yegor Pomortsev <ypomortsev@google.com>
diff --git a/BUILD.gn b/BUILD.gn
index 296f765..2111b53 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -51,8 +51,9 @@
 
 fuchsia_unittest_component("libc-tests-component") {
   component_name = "libc-tests"
-  manifest = "meta/libc-tests.cmx"
-  deps = [ ":libc-tests" ]
+  deps = [ ":libc-tests",
+  # Some tests use /tmp
+  "//src/sys/test_runners:tmp_storage" ]
 }
 
 fuchsia_unittest_component("libc-large-tests-component") {
@@ -62,7 +63,6 @@
 
 fuchsia_unittest_component("libc-tests-broken-component") {
   component_name = "libc-tests-broken"
-  manifest = "meta/libc-tests-broken.cmx"
   deps = [ ":libc-tests-broken" ]
 }
 
diff --git a/meta/libc-tests-broken.cmx b/meta/libc-tests-broken.cmx
deleted file mode 100644
index 44fdf57..0000000
--- a/meta/libc-tests-broken.cmx
+++ /dev/null
@@ -1,13 +0,0 @@
-{
-    "include": [
-        "syslog/client.shard.cmx"
-    ],
-    "program": {
-        "binary": "bin/libc-tests-broken"
-    },
-    "sandbox": {
-        "features": [
-            "isolated-temp"
-        ]
-    }
-}
diff --git a/meta/libc-tests.cmx b/meta/libc-tests.cmx
deleted file mode 100644
index e0ebbf8..0000000
--- a/meta/libc-tests.cmx
+++ /dev/null
@@ -1,13 +0,0 @@
-{
-    "include": [
-        "syslog/client.shard.cmx"
-    ],
-    "program": {
-        "binary": "bin/libc-tests"
-    },
-    "sandbox": {
-        "features": [
-            "isolated-temp"
-        ]
-    }
-}