buildflags.gni 700 B

1234567891011121314151617181920212223242526272829
  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_desktop_capturer = true
  6. # Allow running Electron as a node binary.
  7. enable_run_as_node = true
  8. enable_osr = true
  9. enable_view_api = false
  10. enable_pdf_viewer = false
  11. enable_tts = true
  12. enable_color_chooser = true
  13. # Provide a fake location provider for mocking
  14. # the geolocation responses. Disable it if you
  15. # need to test with chromium's location provider.
  16. # Should not be enabled for release build.
  17. enable_fake_location_provider = !is_official_build
  18. # Enable flash plugin support.
  19. enable_pepper_flash = true
  20. }