Add dep for codegen build (#2385)

BUG=[318738218](https://b.corp.google.com/issues/318738218)
diff --git a/codegen/examples/hello_world/BUILD b/codegen/examples/hello_world/BUILD
index 88d33cf..04425cb 100644
--- a/codegen/examples/hello_world/BUILD
+++ b/codegen/examples/hello_world/BUILD
@@ -10,5 +10,8 @@
 cc_binary(
     name = "hello_world",
     srcs = ["hello_world.cc"],
-    deps = [":hello_world_model"],
+    deps = [
+        ":hello_world_model",
+        "//tensorflow/lite/c:c_api_types",
+    ],
 )