Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
filename
  • Loading branch information
zijiehe-google-com committed Aug 23, 2024
commit c504fe214c80cfa6a5c206cf15eb7248d236f1b2
4 changes: 2 additions & 2 deletions tools/fuchsia/build_fuchsia_artifacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,12 +178,12 @@ def CopyToBucket(src, dst, product=False):


def ReadTargetAPILevel():
filename = os.path.join(os.path.dirname(__file__), '../../tools/fuchsia/gn-sdk/src/gn_configs.gni')
filename = os.path.join(os.path.dirname(__file__), 'gn-sdk/src/gn_configs.gni')
with open(filename) as f:
for line in f:
if line.startswith('fuchsia_target_api_level'):
return line.split('=')[-1].strip()
assert False, 'No fuchsia_target_api_level found in //flutter/tools/fuchsia/gn-sdk/src/gn_configs.gni'
assert False, 'No fuchsia_target_api_level found in ' + filename


def CopyVulkanDepsToBucket(src, dst, arch):
Expand Down