| 1868 | self._AddBuildFileToDicts(pbxbuildfile) |
| 1869 | |
| 1870 | def FileGroup(self, path): |
| 1871 | # Subclasses must override this by returning a two-element tuple. The |
| 1872 | # first item in the tuple should be the PBXGroup to which "path" should be |
| 1873 | # added, either as a child or deeper descendant. The second item should |
| 1874 | # be a boolean indicating whether files should be added into hierarchical |
| 1875 | # groups or one single flat group. |
| 1876 | raise NotImplementedError(self.__class__.__name__ + " must implement FileGroup") |
| 1877 | |
| 1878 | def _AddPathToDict(self, pbxbuildfile, path): |
| 1879 | """Adds path to the dict tracking paths belonging to this build phase. |