features.gni 761 B

123456789101112131415161718
  1. # Copyright 2017 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. declare_args() {
  5. # Control whether only WebKit is build. This is used by bots building
  6. # WebKit for mac but incorrectly setting `target_os="ios"`.
  7. is_webkit_only_build = false
  8. # Control whether //ios/chrome and //ios/web targets are build. This
  9. # is used by bots from projects based on top of Chromium that want to
  10. # only reuse shared code (//ios/net, //remoting/ios, ...).
  11. ios_build_chrome = true
  12. # Controls whether universal links are blocked from opening native apps
  13. # when the user is browsing in off the record mode.
  14. block_universal_links_in_off_the_record_mode = true
  15. }