Skip to content

Commit

Permalink
Revert "[gn + codesign] mac code sign configuration for FlutterMacOS.…
Browse files Browse the repository at this point in the history
…framework.zip (#35707)" (#39735)

This reverts commit 9c6993e.
  • Loading branch information
godofredoc authored Feb 18, 2023
1 parent 9c6993e commit 2fdce9a
Showing 1 changed file with 2 additions and 23 deletions.
25 changes: 2 additions & 23 deletions sky/tools/create_macos_framework.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,6 @@ def regenerate_symlinks(fat_framework):
)


def embed_codesign_configuration(config_path, content):
with open(config_path, 'w') as f:
f.write(content)


def process_framework(dst, args, fat_framework, fat_framework_binary):
if args.dsym:
dsym_out = os.path.splitext(fat_framework)[0] + '.dSYM'
Expand All @@ -151,25 +146,9 @@ def process_framework(dst, args, fat_framework, fat_framework_binary):

# Zip FlutterMacOS.framework.
if args.zip:
macos_filepath_with_entitlements = ''
macos_filepath_without_entitlements = 'FlutterMacOS.framework/Versions/A/FlutterMacOS'

embed_codesign_configuration(
os.path.join(dst, 'entitlements.txt'), macos_filepath_with_entitlements
)

embed_codesign_configuration(
os.path.join(dst, 'without_entitlements.txt'),
macos_filepath_without_entitlements
)
subprocess.check_call([
'zip',
'-r',
'-y',
'FlutterMacOS.framework.zip',
'FlutterMacOS.framework',
'entitlements.txt',
'without_entitlements.txt',
'zip', '-r', '-y', 'FlutterMacOS.framework.zip',
'FlutterMacOS.framework'
],
cwd=dst)

Expand Down

0 comments on commit 2fdce9a

Please sign in to comment.