flutter_defines.gni 730 B

1234567891011121314151617181920212223242526
  1. # Copyright 2017 Google Inc.
  2. #
  3. # Use of this source code is governed by a BSD-style license that can be
  4. # found in the LICENSE file.
  5. flutter_defines = [
  6. "SK_DISABLE_REDUCE_OPLIST_SPLITTING",
  7. "SK_LEGACY_SKCODEC_NONE_ENUM",
  8. "SK_GL",
  9. # Flutter always wants this https://github.com/flutter/flutter/issues/11402
  10. "SK_ENABLE_DUMP_GPU",
  11. # Remove software rasterizers to save some code size.
  12. "SK_DISABLE_AAA",
  13. # API staging
  14. # Flutter doesn't deserialize anything.
  15. "SK_DISABLE_READBUFFER",
  16. "SK_DISABLE_EFFECT_DESERIALIZATION",
  17. # Fast low-precision software rendering isn't a priority for Flutter.
  18. "SK_DISABLE_LEGACY_SHADERCONTEXT",
  19. "SK_DISABLE_LOWP_RASTER_PIPELINE",
  20. "SK_FORCE_RASTER_PIPELINE_BLITTER",
  21. ]