aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/android/java/com/google/devtools/build/android/BUILD
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2016-07-27 17:23:39 +0000
committerGravatar Adam Michael <ajmichael@google.com>2016-07-28 18:36:29 -0400
commitfcd684775f21d8fc38228368c6ac4b2a0213def5 (patch)
tree38948240197a15e0545eeed6964d15e558b9bcdf /src/tools/android/java/com/google/devtools/build/android/BUILD
parentde63c6f89798b3ce2db02b81bd8c139341ad0868 (diff)
Add a resource parsing action.
Part of 3 proposed new actions: - parsing action - merging action - validating action Dependencies (directData and transitiveData) expect the symbol files. If the merge action produces the symbol files, then each merge action depends on each other. Instead, produce it in an action with just source resources as prereqs to allow more parallelism. Technically, we don't need a manifest as part of the parameters. I debated about whether to introduce a basic version of UnvalidatedAndroidData or not. -- MOS_MIGRATED_REVID=128599714
Diffstat (limited to 'src/tools/android/java/com/google/devtools/build/android/BUILD')
-rw-r--r--src/tools/android/java/com/google/devtools/build/android/BUILD8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/tools/android/java/com/google/devtools/build/android/BUILD b/src/tools/android/java/com/google/devtools/build/android/BUILD
index 9a4d1369fd..ac29480278 100644
--- a/src/tools/android/java/com/google/devtools/build/android/BUILD
+++ b/src/tools/android/java/com/google/devtools/build/android/BUILD
@@ -26,6 +26,14 @@ java_binary(
)
java_binary(
+ name = "AndroidResourceParsingAction",
+ main_class = "com.google.devtools.build.android.AndroidResourceParsingAction",
+ runtime_deps = [
+ ":android_builder_lib",
+ ],
+)
+
+java_binary(
name = "AndroidResourceProcessingAction",
main_class = "com.google.devtools.build.android.AndroidResourceProcessingAction",
runtime_deps = [