Initial checkin for TradeFederation.

Includes makefiles for tradefed src and tests, and dummy initial source files.
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..032be23
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,29 @@
+# Copyright (C) 2010 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+
+# Only compile source java files in this lib.
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+LOCAL_MODULE := GoogleTradeFed
+
+LOCAL_JAVA_LIBRARIES := ddmlib junit
+
+include $(BUILD_HOST_JAVA_LIBRARY)
+
+# Build all sub-directories
+include $(call all-makefiles-under,$(LOCAL_PATH))
diff --git a/src/com/android/tradefed/command/Command.java b/src/com/android/tradefed/command/Command.java
new file mode 100644
index 0000000..5b4f62d
--- /dev/null
+++ b/src/com/android/tradefed/command/Command.java
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2010 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.android.tradefed.command;
+
+/**
+ * Placeholder command-line launcher for Trade Federation
+ */
+public class Command {
+
+    /**
+     * Main entry point for TradeFederation command line launcher
+     *
+     * @param args command line arguments.
+     *
+     */
+    public static void main(String[] args) {
+        throw new UnsupportedOperationException();
+    }
+}
diff --git a/tests/Android.mk b/tests/Android.mk
new file mode 100644
index 0000000..ecfa0da
--- /dev/null
+++ b/tests/Android.mk
@@ -0,0 +1,26 @@
+# Copyright (C) 2010 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+
+# Only compile source java files in this lib.
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+LOCAL_MODULE := GoogleTradeFedTests
+
+LOCAL_JAVA_LIBRARIES := GoogleTradeFed ddmlib junit
+
+include $(BUILD_HOST_JAVA_LIBRARY)
diff --git a/tests/src/com/android/tradefed/command/CommandTest.java b/tests/src/com/android/tradefed/command/CommandTest.java
new file mode 100644
index 0000000..6da1738
--- /dev/null
+++ b/tests/src/com/android/tradefed/command/CommandTest.java
@@ -0,0 +1,30 @@
+/*
+ * Copyright (C) 2010 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.android.tradefed.command;
+
+import junit.framework.TestCase;
+
+/**
+ * Place holder test for {@link Command}
+ */
+public class CommandTest extends TestCase {
+
+    /**
+     * Placeholder test method
+     */
+    public void testPass() {
+    }
+}