diff options
author | Xavier Ducrohet <xav@android.com> | 2011-01-31 13:09:08 -0800 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2011-01-31 19:44:26 -0800 |
commit | dec739da5551ddf52a8f3cff06c63de4aced2578 (patch) | |
tree | 9c89babb587086cb6b798e3f1aac2028000a2417 /testapps/basicProjectWithAidl | |
parent | 5f9527877e04cb6ce88c6178d67561a90bcee7dd (diff) | |
download | sdk-dec739da5551ddf52a8f3cff06c63de4aced2578.zip sdk-dec739da5551ddf52a8f3cff06c63de4aced2578.tar.gz sdk-dec739da5551ddf52a8f3cff06c63de4aced2578.tar.bz2 |
Change the JavaGenerator to handle output and dependencies.
Previously, the generator only handled a list of files to compile
and a list of files that were removed.
Now the Generator provides all that needed to do incremental
builders with known state. On top of providing a default
deltavisitor it handles file dependency and list of output
files.
The aidl generator was updated to use this, and the renderscript
generator will use the same mechanism.
Also fixed the abortOnBadSetup which through CoreException which did
nothing to stop later builders (unlike my comments said) and
poluted the workspace log with worthless messages.
Change-Id: Ib954beb9674f1387c022f926388adb8faf6cdac2
Diffstat (limited to 'testapps/basicProjectWithAidl')
-rw-r--r-- | testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/ITest.aidl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/ITest.aidl b/testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/ITest.aidl index cb7a314..7185715 100644 --- a/testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/ITest.aidl +++ b/testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/ITest.aidl @@ -1,7 +1,6 @@ package com.android.tests.basicprojectwithaidl; interface ITest { - Rect getRect(); - + Rect getRect(); } |