Searched refs:gtest_libs (Results 1 – 3 of 3) sorted by relevance
/external/protobuf/gtest/scripts/ |
D | gtest-config.in | 217 gtest_libs="${build_dir}/lib/libgtest.la" 231 gtest_libs="-l${name}" 271 test "$echo_libs" = "yes" && output="$output $gtest_libs"
|
/external/gtest/scripts/ |
D | gtest-config.in | 217 gtest_libs="${build_dir}/lib/libgtest.la" 231 gtest_libs="-l${name}" 271 test "$echo_libs" = "yes" && output="$output $gtest_libs"
|
/external/protobuf/gtest/scons/ |
D | SConscript | 163 def GtestBinary(build_env, target, gtest_libs, sources): 170 gtest_libs: The gtest library or the list of libraries to link. 180 if not gtest_libs: 181 gtest_libs = [] 182 elif type(gtest_libs) != type(list()): 183 gtest_libs = [gtest_libs] 184 binary = build_env.Program(target=target, source=srcs, LIBS=gtest_libs) 189 def GtestTest(build_env, target, gtest_libs, additional_sources=None): 195 gtest_libs: The gtest library or the list of libraries to use. 199 GtestBinary(build_env, target, gtest_libs, [all …]
|