xref: /aosp_15_r20/external/crosvm/tools/windows/files_to_include.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 lists/dictionaries in this file let vendors build/link custom libraries
6
7# paths are relative to platform/crosvm dir
8DLLS = []
9
10VS_PROJECTS_FROM_CMAKE = {
11    # Format of this dictionary is:
12    # "dll_path": { "src": "source_code_path", "cmake_flags": "flags", "cmake_flags_for_features": {"feature": "flags"}}
13}
14
15WINDOWS_BUILDABLE_DLLS = {
16    # Format of this dictionary is:
17    # dll_path: (proj_path/sln_path, build_flags)
18}
19
20BINARIES = [
21    # List of binaries to include.
22]
23