aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/android
diff options
context:
space:
mode:
authorGravatar Alex Humesky <ahumesky@google.com>2017-01-06 19:03:10 +0000
committerGravatar Marcel Hlopko <hlopko@google.com>2017-01-09 10:13:58 +0000
commit105e661bbc08aac35213200a40f0fba4f8832151 (patch)
tree4decf65f269bd6a18b3a1b1b195adfbe39285b0f /src/main/java/com/google/devtools/build/lib/rules/android
parentcc1b9b3404bd974a0dc55b923830d9e4bf4a7790 (diff)
Updates Android flag documentation.
-- PiperOrigin-RevId: 143792017 MOS_MIGRATED_REVID=143792017
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/android')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java b/src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java
index 561b1cf239..87b5560838 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java
@@ -265,11 +265,10 @@ public class AndroidConfiguration extends BuildConfiguration.Fragment {
@Option(name = "fat_apk_cpu",
converter = Converters.CommaSeparatedOptionListConverter.class,
defaultValue = "armeabi-v7a",
- category = "undocumented",
+ category = "semantics",
help = "Setting this option enables fat APKs, which contain native binaries for all "
- + "specified target architectures, e.g., --fat_apk_cpu=x86,armeabi-v7a. Note that "
- + "you will also at least need to select an Android-compatible crosstool. "
- + "If this flag is specified, then --android_cpu is ignored for dependencies of "
+ + "specified target architectures, e.g., --fat_apk_cpu=x86,armeabi-v7a. If this "
+ + "flag is specified, then --android_cpu is ignored for dependencies of "
+ "android_binary rules.")
public List<String> fatApkCpus;