diff options
author | Colin Cross <ccross@android.com> | 2015-05-07 15:44:20 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2015-05-07 16:09:34 -0700 |
commit | 2ba19d90c30046f57c8e3f34a7f7fdc5df2bd5bf (patch) | |
tree | 6af7b7b5c0b31bc197bca4868d534ed7697817a1 /androidbp/cmd/soong.go | |
parent | 0af4b8468b881a009e147cea63e3da76578530a7 (diff) | |
download | build_soong-2ba19d90c30046f57c8e3f34a7f7fdc5df2bd5bf.tar.gz build_soong-2ba19d90c30046f57c8e3f34a7f7fdc5df2bd5bf.tar.bz2 build_soong-2ba19d90c30046f57c8e3f34a7f7fdc5df2bd5bf.zip |
Add cc_benchmark module type
Change-Id: I83bed375fa77518baaab4260e714a9368761f0bc
Diffstat (limited to 'androidbp/cmd/soong.go')
-rw-r--r-- | androidbp/cmd/soong.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/androidbp/cmd/soong.go b/androidbp/cmd/soong.go index 488390fe..db270710 100644 --- a/androidbp/cmd/soong.go +++ b/androidbp/cmd/soong.go @@ -71,6 +71,8 @@ var moduleTypes = map[string]string{ "cc_binary_host": "BUILD_HOST_EXECUTABLE", "cc_test": "BUILD_NATIVE_TEST", "cc_test_host": "BUILD_HOST_NATIVE_TEST", + "cc_benchmark": "BUILD_NATIVE_BENCHMARK", + "cc_benchmark_host": "BUILD_HOST_NATIVE_BENCHMARK", "java_library": "BUILD_JAVA_LIBRARY", "java_library_static": "BUILD_STATIC_JAVA_LIBRARY", "java_library_host": "BUILD_HOST_JAVA_LIBRARY", |