enabled_features.py 351 B

1234567891011
  1. # Copyright 2022 The ChromiumOS Authors
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. # Following lists allow vendors to set/override default features during
  5. # presubmit/continuous builds.
  6. ENABLED_FEATURES = []
  7. BUILD_ONLY_FEATURES = []
  8. BUILD_FEATURES = ENABLED_FEATURES + BUILD_ONLY_FEATURES