Remove runas and code no longer using it

This commit is contained in:
Kevin Sawicki 2017-05-25 17:30:30 -07:00
parent 7d994f2a9e
commit b307b6e602
3 changed files with 0 additions and 24 deletions

View file

@ -15,9 +15,6 @@ CHROMIUM_DIR = os.path.join(SOURCE_ROOT, 'vendor', 'download',
def main(destination):
# if PLATFORM == 'win32':
# register_required_dll()
rm_rf(destination)
(project_name, product_name) = get_names_from_gyp()
@ -49,12 +46,6 @@ def main(destination):
execute([sys.executable, generate_breakpad_symbols] + args)
def register_required_dll():
register = os.path.join(SOURCE_ROOT, 'tools', 'win',
'register_msdia80_dll.js')
execute(['node.exe', os.path.relpath(register)]);
def get_names_from_gyp():
variables = electron_gyp()
return (variables['project_name%'], variables['product_name%'])