Lines Matching refs:gtest_root
103 def ValidateGTestRootDir(gtest_root): argument
109 VerifyFileExists(gtest_root, GTEST_H_SEED)
110 VerifyFileExists(gtest_root, GTEST_ALL_CC_SEED)
149 def FuseGTestH(gtest_root, output_dir): argument
165 for line in open(os.path.join(gtest_root, gtest_header_path), 'r'):
178 def FuseGTestAllCcToFile(gtest_root, output_file): argument
193 for line in open(os.path.join(gtest_root, gtest_source_file), 'r'):
221 def FuseGTestAllCc(gtest_root, output_dir): argument
225 FuseGTestAllCcToFile(gtest_root, output_file)
229 def FuseGTest(gtest_root, output_dir): argument
232 ValidateGTestRootDir(gtest_root)
235 FuseGTestH(gtest_root, output_dir)
236 FuseGTestAllCc(gtest_root, output_dir)