Home | History | Annotate | Download | only in scripts

Lines Matching refs:gtest_root

100 def ValidateGTestRootDir(gtest_root):
101 """Makes sure gtest_root points to a valid gtest root directory.
106 VerifyFileExists(gtest_root, GTEST_H_SEED)
107 VerifyFileExists(gtest_root, GTEST_ALL_CC_SEED)
146 def FuseGTestH(gtest_root, output_dir):
147 """Scans folder gtest_root to generate gtest/gtest.h in output_dir."""
162 for line in file(os.path.join(gtest_root, gtest_header_path), 'r'):
175 def FuseGTestAllCcToFile(gtest_root, output_file):
176 """Scans folder gtest_root to generate gtest/gtest-all.cc in output_file."""
190 for line in file(os.path.join(gtest_root, gtest_source_file), 'r'):
218 def FuseGTestAllCc(gtest_root, output_dir):
219 """Scans folder gtest_root to generate gtest/gtest-all.cc in output_dir."""
222 FuseGTestAllCcToFile(gtest_root, output_file)
226 def FuseGTest(gtest_root, output_dir):
229 ValidateGTestRootDir(gtest_root)
232 FuseGTestH(gtest_root, output_dir)
233 FuseGTestAllCc(gtest_root, output_dir)