diff options
author | Sundong Ahn <sundongahn@google.com> | 2018-09-17 15:23:14 +0900 |
---|---|---|
committer | Sundong Ahn <sundongahn@google.com> | 2018-10-04 14:27:37 +0900 |
commit | ccf9672f6493add8274e800e814c0f85c9c04d3b (patch) | |
tree | df908d424f9b644f935c84161b1c54da8d66c81d /test-runner | |
parent | 7b532b7370d2f19a08fc373ba0e95663d96cbfd6 (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
Merged-In: Ib65f3cd73dac0ac6ed64afeca6546d99739e4424
Change-Id: Ib65f3cd73dac0ac6ed64afeca6546d99739e4424
(cherry picked from commit 558e702be0eb2de76bb45303c99322561d73216c)
Diffstat (limited to 'test-runner')
-rw-r--r-- | test-runner/Android.bp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test-runner/Android.bp b/test-runner/Android.bp index ea615b920df6..0a0d50cc330c 100644 --- a/test-runner/Android.bp +++ b/test-runner/Android.bp @@ -40,7 +40,8 @@ java_sdk_library { "junit.textui", ], - droiddoc_options: ["stubsourceonly"], + droiddoc_options: ["-stubsourceonly"], + metalava_enabled: false, compile_dex: true } |