BUILD.gn 623 B

1234567891011121314151617
  1. # Copyright 2016 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. import("//build/buildflag_header.gni")
  5. import("//components/spellcheck/spellcheck_build_features.gni")
  6. buildflag_header("buildflags") {
  7. header = "spellcheck_buildflags.h"
  8. flags = [
  9. "ENABLE_SPELLCHECK=$enable_spellcheck",
  10. "USE_BROWSER_SPELLCHECKER=$use_browser_spellchecker",
  11. "USE_RENDERER_SPELLCHECKER=$use_renderer_spellchecker",
  12. "ENABLE_SPELLING_SERVICE=$enable_spelling_service",
  13. "HAS_SPELLCHECK_PANEL=$has_spellcheck_panel",
  14. ]
  15. }