prepare_dlls.py 520 B

123456789101112131415161718192021
  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. # The functions in this file let the vendors build and copy tools/libraries
  5. # that they may find necessary for their products.
  6. from files_to_include import (
  7. DLLS,
  8. WINDOWS_BUILDABLE_DLLS,
  9. BINARIES,
  10. VS_PROJECTS_FROM_CMAKE,
  11. )
  12. def build_dlls(crosvm_root, mode, job_type="local", features=[]):
  13. pass
  14. def copy_dlls(crosvm_root, target_paths, mode):
  15. pass