| # Copyright 2020 The Fuchsia Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| import("//build/config/fuchsia/platform_version.gni") | |
| max_supported_api_level = 0 | |
| foreach(level, platform_version.supported_fuchsia_api_levels) { | |
| if (level > max_supported_api_level) { | |
| max_supported_api_level = level | |
| } | |
| } |