Initial build configuration for the new Android runtime.

Change-Id: I9956c8623f7bd333ceba5a41fc8cd3d16c309fd7
diff --git a/src/art.cc b/src/art.cc
new file mode 100644
index 0000000..17c5aae
--- /dev/null
+++ b/src/art.cc
@@ -0,0 +1,13 @@
+#include "art.h"
+
+namespace android {
+namespace runtime {
+
+bool Art::Startup() {
+  return true;
+}
+
+void Art::Shutdown() {
+}
+
+} }  // namespace
diff --git a/src/art.h b/src/art.h
new file mode 100644
index 0000000..417e296
--- /dev/null
+++ b/src/art.h
@@ -0,0 +1,17 @@
+#ifndef ART_ART_H_
+#define ART_ART_H_
+
+namespace android {
+namespace runtime {
+
+class Art {
+ public:
+  static bool Startup();
+  static void Shutdown();
+};
+
+} }  // namespace android::runtime
+
+namespace r = android::runtime;
+
+#endif  // ART_ART_H_
diff --git a/src/main.cc b/src/main.cc
new file mode 100644
index 0000000..b87a8fe
--- /dev/null
+++ b/src/main.cc
@@ -0,0 +1,6 @@
+#include <iostream>
+
+int main(int argc, char** argv) {
+  std::cout << "hello, world" << std::endl;
+  return 0;
+}