Merge branch 'google3'

Change-Id: I99e72f30bb4b8f975d61a940a7c7b746dba07796
This commit is contained in:
Alexey Polyudov
2020-10-01 02:32:02 -07:00
8 changed files with 70 additions and 9 deletions
+1 -1
View File
@@ -96,7 +96,7 @@ def copy_files_to_oss_project(src_root, dst_root):
def detect_file_copy_header_options(fname, lines):
if not lines:
return None # ignore empty file
suffixes = [".cc", ".cpp", ".cxx", ".c", ".h", ".hpp", ".inc", ".proto"]
suffixes = [".cc", ".cpp", ".cxx", ".c", ".h", ".hpp", ".inc", ".mm", ".proto"]
for suffix in suffixes:
if fname.endswith(suffix):
return ("//", 0)