headless.gni 592 B

1234567891011121314151617
  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. # Embed resource.pak file into the binary for easier distribution.
  6. headless_use_embedded_resources = false
  7. # Use Prefs component to access Local State and other preferences.
  8. headless_use_prefs = true
  9. # Use Policy component to manage preferences.
  10. headless_use_policy = true
  11. # Platforms where headless mode is supported.
  12. headless_mode_policy_supported = !is_android && !is_ios && !is_chromeos
  13. }