Home | History | Annotate | Download | only in mac

Lines Matching refs:branding

183 def _AddBreakpadKeys(plist, branding):
185 also requires the |branding| argument."""
187 plist['BreakpadProduct'] = '%s_Mac' % branding
188 plist['BreakpadProductDisplay'] = branding
236 parser.add_option('--branding', dest='branding', action='store',
237 type='string', default=None, help='The branding of the binary')
259 if options.branding is None:
260 print >>sys.stderr, 'Use of Breakpad requires branding.'
262 _AddBreakpadKeys(plist, options.branding)