diff options
| author | 2015-09-14 15:55:57 +0000 | |
|---|---|---|
| committer | 2015-09-14 15:55:57 +0000 | |
| commit | 5cfa89f7a1a60e3340a7c3be70d38159dad23082 (patch) | |
| tree | 9b573025f4dde80fa4e43126065b65f40f00bb18 /tools/aidl/main.cpp | |
| parent | 96ef062b041972f5fed52cf29b143ef5ac5ae11c (diff) | |
| parent | 026cbbfbda2d3db388bcaf7d8c3897f7856af1f8 (diff) | |
am 026cbbfb: am 27a0be36: resolved conflicts for ddf53180 to stage-aosp-master
* commit '026cbbfbda2d3db388bcaf7d8c3897f7856af1f8':
Remove the aidl tool
Diffstat (limited to 'tools/aidl/main.cpp')
| -rw-r--r-- | tools/aidl/main.cpp | 23 |
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; -} |