buildflags.gni 600 B

123456789101112131415161718192021
  1. # Copyright (c) 2018 GitHub, Inc.
  2. # Use of this source code is governed by the MIT license that can be
  3. # found in the LICENSE file.
  4. declare_args() {
  5. enable_views_api = true
  6. enable_pdf_viewer = true
  7. # Provide a fake location provider for mocking
  8. # the geolocation responses. Disable it if you
  9. # need to test with chromium's location provider.
  10. # Should not be enabled for release build.
  11. enable_fake_location_provider = !is_official_build
  12. # Enable Chrome extensions support.
  13. enable_electron_extensions = true
  14. # Enable Spellchecker support
  15. enable_builtin_spellchecker = true
  16. }