summaryrefslogtreecommitdiff
path: root/tools/aidl/main.cpp
diff options
context:
space:
mode:
author Christopher Wiley <wiley@google.com> 2015-09-14 14:11:19 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-09-14 14:11:19 +0000
commitddf53180e47cd4d31ba6bc762e98670898b040c9 (patch)
tree5dc0b093223304b3c6342036f41feb4e51fbd605 /tools/aidl/main.cpp
parent4140a21e2ec69089de916e240fd606a3daf09896 (diff)
parent73ea1230fc2a4007973efe3730d482d7bc6cf87a (diff)
Merge "Remove the aidl tool"
Diffstat (limited to 'tools/aidl/main.cpp')
-rw-r--r--tools/aidl/main.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/tools/aidl/main.cpp b/tools/aidl/main.cpp
deleted file mode 100644
index 7cc2198bb5df..000000000000
--- a/tools/aidl/main.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-#include "aidl.h"
-#include "options.h"
-
-#include <stdio.h>
-
-int
-main(int argc, const char **argv)
-{
- Options options;
- int result = parse_options(argc, argv, &options);
- if (result) {
- return result;
- }
-
- switch (options.task) {
- case COMPILE_AIDL:
- return compile_aidl(options);
- case PREPROCESS_AIDL:
- return preprocess_aidl(options);
- }
- fprintf(stderr, "aidl: internal error\n");
- return 1;
-}