Lines Matching refs:gtest_root
100 def ValidateGTestRootDir(gtest_root): argument
106 VerifyFileExists(gtest_root, GTEST_H_SEED)
107 VerifyFileExists(gtest_root, GTEST_ALL_CC_SEED)
146 def FuseGTestH(gtest_root, output_dir): argument
162 for line in file(os.path.join(gtest_root, gtest_header_path), 'r'):
175 def FuseGTestAllCcToFile(gtest_root, output_file): argument
190 for line in file(os.path.join(gtest_root, gtest_source_file), 'r'):
218 def FuseGTestAllCc(gtest_root, output_dir): argument
222 FuseGTestAllCcToFile(gtest_root, output_file)
226 def FuseGTest(gtest_root, output_dir): argument
229 ValidateGTestRootDir(gtest_root)
232 FuseGTestH(gtest_root, output_dir)
233 FuseGTestAllCc(gtest_root, output_dir)