Import 'clang-sys' package version 0.29.3

* Add OWNERS
* No Android.bp yet
Bug: 152884384
Test: make

Change-Id: I1d652df9a2f868b46957554a8ade394acbfe7af0
diff --git a/docs.py b/docs.py
new file mode 100644
index 0000000..e1d6d9c
--- /dev/null
+++ b/docs.py
@@ -0,0 +1,30 @@
+#!/usr/bin/env python3
+
+import os
+import shutil
+import subprocess
+
+TARGET = ".docs"
+VERSION = "clang_9_0"
+
+if os.path.isdir(TARGET):
+    shutil.rmtree(TARGET)
+
+os.mkdir(TARGET)
+
+for (name, features) in [("default", VERSION), ("runtime", f"runtime,{VERSION}")]:
+    subprocess.call(["cargo", "clean"])
+    subprocess.call(["cargo", "doc", f"--features={features}", "--no-deps"])
+    print(f"Copying docs to {TARGET}/{name}...")
+    shutil.copytree(f"target/doc", f"{TARGET}/{name}")
+
+os.chdir(TARGET)
+subprocess.call(["git", "init"])
+subprocess.call(["git", "remote", "add", "origin", "git@github.com:KyleMayes/clang-sys.git"])
+subprocess.call(["git", "checkout", "--orphan", "gh-pages"])
+subprocess.call(["git", "add", "-A"])
+subprocess.call(["git", "commit", "-m", "\"Update documentation\""])
+subprocess.call(["git", "push", "origin", "gh-pages", "--force"])
+
+os.chdir("..")
+shutil.rmtree(TARGET)