resources.gni 721 B

1234567891011121314151617
  1. # Copyright 2021 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/chrome_build.gni")
  5. import("//build/config/chromeos/ui_mode.gni")
  6. declare_args() {
  7. # Build flag to include resources for the animated screensaver in ash builds.
  8. #
  9. # Currently, these resources are included by default for internal ChromeOS
  10. # builds as both conditions below are prerequisites for downloading Lottie
  11. # ambient mode resources from CIPD in the DEPS file.
  12. #
  13. # May be overridden locally to false for testing purposes if desired.
  14. include_ash_ambient_animation_resources = is_chromeos_ash && is_chrome_branded
  15. }