@@ -778,7 +778,7 @@ def GetLdflags(self, configname, product_dir, gyp_to_build_path, arch=None):
778778 product_dir: The directory where products such static and dynamic
779779 libraries are placed. This is added to the library search path.
780780 gyp_to_build_path: A function that converts paths relative to the
781- current gyp file to paths relative to the build direcotry .
781+ current gyp file to paths relative to the build directory .
782782 """
783783 self .configname = configname
784784 ldflags = []
@@ -923,7 +923,7 @@ def GetPerTargetSetting(self, setting, default=None):
923923
924924 def _GetStripPostbuilds (self , configname , output_binary , quiet ):
925925 """Returns a list of shell commands that contain the shell commands
926- neccessary to strip this target's binary. These should be run as postbuilds
926+ necessary to strip this target's binary. These should be run as postbuilds
927927 before the actual postbuilds run."""
928928 self .configname = configname
929929
@@ -957,7 +957,7 @@ def _GetStripPostbuilds(self, configname, output_binary, quiet):
957957
958958 def _GetDebugInfoPostbuilds (self , configname , output , output_binary , quiet ):
959959 """Returns a list of shell commands that contain the shell commands
960- neccessary to massage this target's debug information. These should be run
960+ necessary to massage this target's debug information. These should be run
961961 as postbuilds before the actual postbuilds run."""
962962 self .configname = configname
963963
@@ -1052,7 +1052,7 @@ def _AdjustLibrary(self, library, config_name=None):
10521052 # "/usr/lib" libraries, is do "-L/usr/lib -lname" which is dependent on the
10531053 # library order and cause collision when building Chrome.
10541054 #
1055- # Instead substitude ".tbd" to ".dylib" in the generated project when the
1055+ # Instead substitute ".tbd" to ".dylib" in the generated project when the
10561056 # following conditions are both true:
10571057 # - library is referenced in the gyp file as "$(SDKROOT)/**/*.dylib",
10581058 # - the ".dylib" file does not exists but a ".tbd" file do.
@@ -1341,7 +1341,7 @@ def GetStdout(cmdlist):
13411341def MergeGlobalXcodeSettingsToSpec (global_dict , spec ):
13421342 """Merges the global xcode_settings dictionary into each configuration of the
13431343 target represented by spec. For keys that are both in the global and the local
1344- xcode_settings dict, the local key gets precendence .
1344+ xcode_settings dict, the local key gets precedence .
13451345 """
13461346 # The xcode generator special-cases global xcode_settings and does something
13471347 # that amounts to merging in the global xcode_settings into each local
@@ -1384,7 +1384,7 @@ def GetMacBundleResources(product_dir, xcode_settings, resources):
13841384 output = dest
13851385
13861386 # The make generator doesn't support it, so forbid it everywhere
1387- # to keep the generators more interchangable .
1387+ # to keep the generators more interchangeable .
13881388 assert ' ' not in res , (
13891389 "Spaces in resource filenames not supported (%s)" % res )
13901390
@@ -1426,14 +1426,14 @@ def GetMacInfoPlist(product_dir, xcode_settings, gyp_path_to_build_path):
14261426 relative to the build directory.
14271427 xcode_settings: The XcodeSettings of the current target.
14281428 gyp_to_build_path: A function that converts paths relative to the
1429- current gyp file to paths relative to the build direcotry .
1429+ current gyp file to paths relative to the build directory .
14301430 """
14311431 info_plist = xcode_settings .GetPerTargetSetting ('INFOPLIST_FILE' )
14321432 if not info_plist :
14331433 return None , None , [], {}
14341434
14351435 # The make generator doesn't support it, so forbid it everywhere
1436- # to keep the generators more interchangable .
1436+ # to keep the generators more interchangeable .
14371437 assert ' ' not in info_plist , (
14381438 "Spaces in Info.plist filenames not supported (%s)" % info_plist )
14391439
0 commit comments