1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| ###########################################
| ## A thin wrapper around BUILD_EXECUTABLE
| ## Common flags for native benchmarks are added.
| ###########################################
| $(call record-module-type,NATIVE_BENCHMARK)
|
| LOCAL_STATIC_LIBRARIES += libgoogle-benchmark
|
| ifndef LOCAL_MULTILIB
| ifndef LOCAL_32_BIT_ONLY
| LOCAL_MULTILIB := both
| endif
| endif
|
| include $(BUILD_EXECUTABLE)
|
|