summaryrefslogtreecommitdiff
path: root/tools/bit
diff options
context:
space:
mode:
authorJoe Onorato <joeo@google.com>2017-10-16 21:19:16 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2017-10-16 21:19:16 +0000
commit22910ada9abbda61346d3a28470be2176364f77e (patch)
treebee7570ef488f63c1476a4e8fb04be1ba3a7538c /tools/bit
parente1e0785c38488a48e03d939508b89ba3cadc84cc (diff)
parentb81d1a7b9a38dcb4d356ae3435a82fb52ba7d585 (diff)
Merge changes Idf402222,I8eb7e341
* changes: Start auto-generating the stats log API. Make bit able to build native tests.
Diffstat (limited to 'tools/bit')
-rw-r--r--tools/bit/make.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bit/make.cpp b/tools/bit/make.cpp
index a8002417b916..b2ee99c2c74c 100644
--- a/tools/bit/make.cpp
+++ b/tools/bit/make.cpp
@@ -182,7 +182,7 @@ read_modules(const string& buildOut, const string& device, map<string,Module>* r
for (ssize_t i = module.classes.size() - 1; i >= 0; i--) {
string cl = module.classes[i];
if (!(cl == "JAVA_LIBRARIES" || cl == "EXECUTABLES" || cl == "SHARED_LIBRARIES"
- || cl == "APPS")) {
+ || cl == "APPS" || cl == "NATIVE_TESTS")) {
module.classes.erase(module.classes.begin() + i);
}
}