diff options
author | Sundong Ahn <sundongahn@google.com> | 2018-09-17 15:23:14 +0900 |
---|---|---|
committer | Sundong Ahn <sundongahn@google.com> | 2018-10-02 01:50:09 +0000 |
commit | 558e702be0eb2de76bb45303c99322561d73216c (patch) | |
tree | c1cf53825977e2c350c63d324247f9985a92d7fc /test-base | |
parent | 2623812b096c5aa6b9e1ef7e3d82b85b791b3b05 (diff) |
Add the metalava_enabled property
The new property is added for supporting metalava. But some sdk library
cannot use metalava. So "metalava_enabled: false" is added to these
modules.
Test: make -j
Test: checkapi
Bug: 117127012
Change-Id: Ib65f3cd73dac0ac6ed64afeca6546d99739e4424
Diffstat (limited to 'test-base')
-rw-r--r-- | test-base/Android.bp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test-base/Android.bp b/test-base/Android.bp index 0b8a02a815d9..4d765d3e5f3f 100644 --- a/test-base/Android.bp +++ b/test-base/Android.bp @@ -37,7 +37,8 @@ java_sdk_library { "junit.framework", ], - droiddoc_options: ["stubsourceonly"], + droiddoc_options: ["-stubsourceonly"], + metalava_enabled: false, compile_dex: true, } |