• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2017 The Chromium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5# This file contains arguments that subprojects may choose to override. It
6# asserts that those overrides are used, to prevent unused args warnings.
7
8declare_args() {
9  # Version of iOS that we're targeting.
10  ios_deployment_target = "15.0"
11}
12
13# Always assert that ios_deployment_target is used on non-iOS platforms to
14# prevent unused args warnings.
15if (!is_ios) {
16  assert(ios_deployment_target == "15.0" || true)
17}
18