buildflags_paint_preview.gni 687 B

12345678910111213141516
  1. # Copyright 2019 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/config/chromecast_build.gni")
  5. import("//build/config/features.gni")
  6. declare_args() {
  7. # Enable basic paint preview support. Does not work on iOS. Should
  8. # not be included with Chromecast hardware devices.
  9. # Used by //components/paint_preview and //third_party/harfbuzz-ng.
  10. # TODO(crbug.com/webrtc/11223) Move back this file in
  11. # //components/paint_preview/ once WebRTC doesn't roll harfbuzz-ng anymore,
  12. # for consistency sake.
  13. enable_paint_preview = !is_castos && !is_cast_android && !is_ios
  14. }