Avi Drissman | ea1be23 | 2022-09-14 23:29:06 | [diff] [blame] | 1 | # Copyright 2017 The Chromium Authors |
mef | d0581caf | 2017-02-08 13:55:37 | [diff] [blame] | 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | declare_args() { |
Sylvain Defresne | 2b94137 | 2021-02-23 16:31:18 | [diff] [blame] | 6 | # Control whether only WebKit is build. This is used by bots building |
| 7 | # WebKit for mac but incorrectly setting `target_os="ios"`. |
| 8 | is_webkit_only_build = false |
| 9 | |
Justin | 69ec971 | 2023-01-25 14:37:25 | [diff] [blame] | 10 | # Control whether iOS builds with PartitionAlloc. |
Justin Cohen | d51cb76 | 2023-04-18 21:15:01 | [diff] [blame] | 11 | # Temporarily disable for rollout -- see crbug.com/1412190 for details. |
Justin Cohen | 846bd21 | 2023-10-15 18:45:24 | [diff] [blame] | 12 | ios_partition_alloc_enabled = true |
Justin | 69ec971 | 2023-01-25 14:37:25 | [diff] [blame] | 13 | |
mikt | cd50ddaa | 2024-10-11 09:42:44 | [diff] [blame] | 14 | # Control whether PartitionAlloc for iOS builds has extra checks for |
| 15 | # metadata corruption issue investigation. |
| 16 | # TODO(crbug.com/371135823): Remove upon completion of the investigation. |
Justin Cohen | 682f0aca2 | 2024-10-24 16:55:14 | [diff] [blame] | 17 | ios_partition_alloc_corruption_hardening_enabled = false |
mikt | cd50ddaa | 2024-10-11 09:42:44 | [diff] [blame] | 18 | |
Sylvain Defresne | 0e15172 | 2021-09-30 16:11:28 | [diff] [blame] | 19 | # Control whether //ios/chrome and //ios/web targets are build. This |
| 20 | # is used by bots from projects based on top of Chromium that want to |
| 21 | # only reuse shared code (//ios/net, //remoting/ios, ...). |
| 22 | ios_build_chrome = true |
| 23 | |
Mike Dougherty | 10d316d8 | 2019-02-16 00:36:17 | [diff] [blame] | 24 | # Controls whether universal links are blocked from opening native apps |
| 25 | # when the user is browsing in off the record mode. |
| 26 | block_universal_links_in_off_the_record_mode = true |
mef | d0581caf | 2017-02-08 13:55:37 | [diff] [blame] | 27 | } |