From 73ea1230fc2a4007973efe3730d482d7bc6cf87a Mon Sep 17 00:00:00 2001 From: Christopher Wiley Date: Fri, 11 Sep 2015 14:24:24 -0700 Subject: Remove the aidl tool This has been moved into its own repository at //system/tools/aidl Test: Built aosp_arm-eng from scratch. Bug: 23691099 Change-Id: Ic45d55682b9dcafe894efe0a6317792f9c1236c6 --- tools/aidl/main.cpp | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 tools/aidl/main.cpp (limited to 'tools/aidl/main.cpp') 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 - -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; -} -- cgit v1.2.3-59-g8ed1b