Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Fuchsia api level 18 #53115

Merged
merged 3 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion build/config/fuchsia/gn_configs.gni
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ declare_args() {
# value to specify the API level the packages produced from this repository
# should be targeting, e.g. in their top-level //.gn file. A value of -1
# means that no API level will be passed to the tools that consumes it.
fuchsia_target_api_level = 17
fuchsia_target_api_level = 18

# The SDK manifest file. This is useful to include as a dependency
# for some targets in order to cause a rebuild when the version of the
Expand Down
2 changes: 1 addition & 1 deletion tools/fuchsia/build_fuchsia_artifacts_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def test_read_fuchsia_target_api_level(self):
# It's expected to update this test each time the fuchsia_target_api_level
# in //flutter/build/config/fuchsia/gn_configs.gni is changed, so we don't
# accidentally publish the artifacts with an incorrect api level suffix.
self.assertEqual(build_fuchsia_artifacts.ReadTargetAPILevel(), '17')
self.assertEqual(build_fuchsia_artifacts.ReadTargetAPILevel(), '18')


if __name__ == '__main__':
Expand Down