xref: /aosp_15_r20/external/crosvm/tools/windows/prepare_dlls.py (revision bb4ee6a4ae7042d18b07a98463b9c8b875e44b39)
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
5# The functions in this file let the vendors build and copy tools/libraries
6# that they may find necessary for their products.
7
8from files_to_include import (
9    DLLS,
10    WINDOWS_BUILDABLE_DLLS,
11    BINARIES,
12    VS_PROJECTS_FROM_CMAKE,
13)
14
15
16def build_dlls(crosvm_root, mode, job_type="local", features=[]):
17    pass
18
19
20def copy_dlls(crosvm_root, target_paths, mode):
21    pass
22